1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CFrontend/2008-01-24-StructAlignAndBitFields.c
Devang Patel 587591ba1b New test.
llvm-svn: 46333
2008-01-24 23:55:34 +00:00

7 lines
182 B
C

// RUN: %llvmgcc %s -S -o -
// This struct is not 4 byte aligned becaues bit-field
// type does not influence struct alignment.
struct U { char a; short b; int c:25; char d; } u;