3 /* { dg-require-alias "" } */
4 /* { dg-options "-funit-at-a-time" } */
6 static int f1 (void) { return 0; }
7 extern int g1 (void) __attribute__((__alias__("f1")));
9 #define STR(x) STR1(__USER_LABEL_PREFIX__, x)
10 #define STR1(x,y) STR2(x, y)
11 #define STR2(x,y) #x #y
13 static int f2 (void) __asm__(STR(a2
));
14 static int f2 (void) { return 0; }
15 extern int g2 (void) __attribute__((__alias__("a2")));