llvm-gcc checks the static asm variable is valid in ValidateRegisterVariable. Make...
[oota-llvm.git] / test / FrontendC / 2007-04-17-ZeroSizeBitFields.c
1 // PR 1332
2 // RUN: %llvmgcc %s -S -o /dev/null
3
4 struct Z { int a:1; int :0; int c:1; } z;