blob: dadd9c08444a2b1e95a8635ed76f625b07f495ea (
plain)
1
2
3
4
5
6
7
8
|
/* { dg-require-alias "" } */
/* { dg-require-weak "" } */
/* { dg-xfail-if "weak alias" { powerpc-ibm-aix* } } */
static int dummy = 0;
extern int foo __attribute__((__weak__, __alias__("dummy")));
typedef char check[2*!__builtin_constant_p(dummy)-1];
typedef char check[2*!__builtin_constant_p(foo)-1];
|