aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/tailcall-10.c
blob: 484dcc125fc3275847f169da46d69d2975a8e5be (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);
struct A foo(void)
{
  return goo();
}

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