Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / special / alias-1.c
blob6798c5be4c656ad8c0aa3b80541932795a6e20c0
1 /* { dg-do link } */
2 /* { dg-require-alias "" } */
4 #include <stdlib.h>
6 extern int foo(void) __attribute__((alias("bar")));
8 int bar(void) {
9 return 1;
12 int main(void) {
14 if (foo())
15 exit(0);
16 else
17 abort();