Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-ccp-7.c
blobb3497413064f6a6fa8d6abe56cd5aef001e9a93b
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-optimized" } */
4 extern void link_error (void);
6 /* tests to check if cprop works when using non-return functions */
8 extern int not_returning (int) __attribute__ ((noreturn));
10 int b;
11 int test7 (int a)
13 b = 7;
14 if (a)
16 not_returning (a);
18 if (b != 7)
19 link_error ();
20 return b;
24 /* There should be not link_error calls, if there is any the
25 optimization has failed */
26 /* { dg-final { scan-tree-dump-times "link_error" 0 "optimized"} } */
27 /* { dg-final { cleanup-tree-dump "optimized" } } */