comparison gcc/testsuite/gcc.dg/20050811-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* Test whether -fdump-rtl-all-graph doesn't crash. */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fdump-rtl-all-graph" } */
4
5 int foo (void)
6 {
7 return 6;
8 }
9
10 int bar (int x)
11 {
12 if (x < 0)
13 return foo () + 8;
14 else if (x > 0)
15 return 2 * foo ();
16 else
17 return foo ();
18 }
19