* gcc.dg/const-elim-1.c: Remove xfail for xtensa-*-*.
[official-gcc.git] / gcc / testsuite / gcc.dg / darwin-weakimport-1.c
blobe74ccc98ae679f3c28dccc151b5e631a3899fa5b
1 /* { dg-do compile { target *-*-darwin* } } */
2 /* { dg-require-weak "" } */
3 /* { dg-options "-fno-common" } */
5 /* { dg-final { scan-assembler "weak_reference _a" } } */
6 /* { dg-final { scan-assembler-not "weak_\[a-z \t\]*_b" } } */
8 extern void a (void) __attribute__((weak_import));
9 extern void b (void) __attribute__((weak_import));
11 void b(void)
13 a();