]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/alias-13.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / alias-13.c
1 /* { dg-do compile } */
2 /* { dg-require-alias "" } */
3 /* { dg-options "-O2" } */
4 static void f (void) __attribute__((alias("g"))); static void g (void) __attribute__((alias("f"))); // { dg-error "part of alias cycle" }
5
6 void h ()
7 {
8 f ();
9 }