Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / 20011119-2.c
blobe06809f338714f0295c2378fc4b4c9ae8f034d63
1 /* { dg-require-weak "" } */
2 /* { dg-require-alias "" } */
3 #define ASMNAME(cname) ASMNAME2 (__USER_LABEL_PREFIX__, cname)
4 #define ASMNAME2(prefix, cname) STRING (prefix) cname
5 #define STRING(x) #x
7 extern inline int foo (void) { return 23; }
8 int bar (void) { return foo (); }
9 extern int foo (void) __attribute__ ((weak, alias ("xxx")));
10 int baz (void) { return foo (); }
11 int xxx(void) __asm__(ASMNAME ("xxx"));
12 int xxx(void) { return 23; }