remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / 2008-05-19-AlwaysInline.c
blob506f6cf9c509fae3cbd73f434c2f1a099d8fdf72
1 // RUN: %llvmgcc %s -S -fno-unit-at-a-time -emit-llvm -O0 -o - | not grep sabrina
2 // RUN: %llvmgcc %s -S -funit-at-a-time -emit-llvm -O0 -o - | not grep sabrina
4 static inline int sabrina (void) __attribute__((always_inline));
5 static inline int sabrina (void)
7 return 13;
9 int bar (void)
11 return sabrina () + 68;