remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / redef-ext-inline.c
blob240beb1f6f675eaea22c9be92eeccf25ed549300
1 // RUN: %llvmgcc -S %s -o -
2 // rdar://7208839
4 extern inline int f1 (void) {return 1;}
5 int f3 (void) {return f1();}
6 int f1 (void) {return 0;}