remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / 2003-11-20-UnionBitfield.c
blobf999c2077721875b485454aada059f588477bc69
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
3 struct printf_spec {
4 unsigned int minus_flag:1;
5 char converter;
6 };
8 void parse_doprnt_spec () {
9 struct printf_spec spec;
10 spec.minus_flag = 1;