pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / FrontendC / 2003-08-29-BitFieldStruct.c
blob57273cd863931e7e6324db692c23e98f7614e7a2
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
3 struct Word {
4 short bar;
5 short baz;
6 int final:1;
7 short quux;
8 } *word_limit;
10 void foo ()
12 word_limit->final = (word_limit->final && word_limit->final);