remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git] / test / FrontendC / extern-weak.c
blobf31a6ad0dc7f94acafbe240bf41eb86c379b5c1d
1 // RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep extern_weak
2 // RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | llvm-as | llc
4 #if !defined(__linux__) && !defined(__FreeBSD__) && \
5 !defined(__OpenBSD__) && !defined(__CYGWIN__) && !defined(__DragonFly__)
6 void foo() __attribute__((weak_import));
7 #else
8 void foo() __attribute__((weak));
9 #endif
11 void bar() { foo(); }