Move variable that's unused in an NDEBUG build inside the DEBUG() macro, fixing
[llvm.git] / test / FrontendC / 2004-11-25-UnnamedBitfieldPadding.c
blobb3f4a829a9ebae99f6d3b6dafe119fa03841b184
1 // RUN: %llvmgcc -S %s -o /dev/null
2 // This is a testcase for PR461
3 typedef struct {
4 unsigned min_align: 1;
5 unsigned : 1;
6 } addr_diff_vec_flags;
8 addr_diff_vec_flags X;