mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
e23727694c
llvm-svn: 90626
13 lines
355 B
C
13 lines
355 B
C
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %s | grep extern_weak
|
|
// RUN: %llvmgcc -O3 -S -o - -emit-llvm %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(); }
|
|
|