libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / tailcall-10.c
blob484dcc125fc3275847f169da46d69d2975a8e5be
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-tailc-details" } */
4 struct A {};
6 struct A goo(void);
7 struct A foo(void)
9 return goo();
12 /* { dg-final { scan-tree-dump-times "Found tail call" 1 "tailc"} } */