aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/extern-weak.c
blob: b131f3343d3cc642c7217173769761e7fb05da52 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep extern_weak
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | llvm-as | llc

#if !defined(__linux__) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
void foo() __attribute__((weak_import));
#else
void foo() __attribute__((weak));
#endif

void bar() { foo(); }