blob: 73b59cc48c4056e41551c494d1eded873a31923e [file] [log] [blame]
// RUN: %llvmgcc -O3 -S -o - %s | grep extern_weak
// RUN: %llvmgcc -O3 -S -o - %s | llc
#if !defined(__linux__) && !defined(__FreeBSD__) && \
!defined(__OpenBSD__) && !defined(__CYGWIN__) && !defined(__DragonFly__)
void foo() __attribute__((weak_import));
#else
void foo() __attribute__((weak));
#endif
void bar() { foo(); }