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"} } */