* tree-dump.c (dump_switch_p_1): Require exact match of the option
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-prof / update-tailcall.c
blob28549144534de775bd4b24b46e1f156a4f633616
1 /* { dg-options "-O2 -fdump-tree-tailc -fdump-tree-optimized" } */
2 __attribute__ ((noinline))
3 int factorial(int x)
5 if (x == 1)
6 return 1;
7 else
8 return x*factorial(--x);
10 int gbl;
11 int
12 main()
14 gbl = factorial(100);
15 return 0;
17 /* { dg-final-use { scan-tree-dump-not "Invalid sum" "tailc"} } */
18 /* { dg-final-use { scan-tree-dump-not "Invalid sum" "optimized"} } */
19 /* { dg-final-use { cleanup-tree-dump "tailc" } } */
20 /* { dg-final-use { cleanup-tree-dump "optimized" } } */