summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/alias-13.c
blob: 85e1f8744bc75175f35195b7f7acc3e51626c9bf (plain)
1
2
3
4
5
6
7
8
9
/* { dg-do compile } */
/* { dg-require-alias "" } */
/* { dg-options "-O2" } */
static void f (void) __attribute__((alias("g"))); static void g (void) __attribute__((alias("f"))); // { dg-error "part of alias cycle" }

void h ()
{
  f ();
}