OSDN Git Service

* gcc.dg/builtins-config.h: Disable C99 runtime testing for
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / alias-5.c
1 /* { dg-do link } */
2 /* { dg-require-alias "" } */
3 /* { dg-options "" } */
4
5 static inline int foo () { return 0; }
6 static int bar () __attribute__ ((alias ("foo")));
7 int main () { return bar (); }