comparison gcc/testsuite/gcc.dg/darwin-weakimport-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* { dg-do compile { target *-*-darwin* } } */
2 /* { dg-require-weak "" } */
3 /* { dg-options "-fno-common -fno-asynchronous-unwind-tables" } */
4
5 /* { dg-final { scan-assembler "weak_reference _a" } } */
6 /* { dg-final { scan-assembler-not "weak_\[a-z \t\]*_b" } } */
7
8 extern void a (void) __attribute__((weak_import));
9 extern void b (void) __attribute__((weak_import));
10
11 void b(void)
12 {
13 a();
14 }