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

struct A {};
struct B{};

struct B goo(void);
struct A foo(void)
{
  struct A a;
  goo();
  return a;
}

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