aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/tailcall-12.c
blob: 0eeb3ab2794e480a0ea7742c4d230aa803158013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-tailc-details" } */

struct A {};

struct A goo(void);
void foo(void)
{
  goo();
}

/* { dg-final { scan-tree-dump-times "Found tail call" 1 "tailc"} } */