1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 12:33:33 +02:00
llvm-mirror/test/FrontendC/2004-11-25-UnnamedBitfieldPadding.c

9 lines
173 B
C
Raw Normal View History

2004-11-25 07:25:13 +01:00
// RUN: %llvmgcc -S %s -o /dev/null
// This is a testcase for PR461
typedef struct {
unsigned min_align: 1;
unsigned : 1;
} addr_diff_vec_flags;
addr_diff_vec_flags X;