LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / 20050811-1.c
blobe74a14f192eb6dbc8ef1ca9d4e4de3a84e30f0bf
1 /* Test whether -fdump-rtl-all-graph doesn't crash. */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fdump-rtl-all-graph" } */
5 int foo (void)
7 return 6;
10 int bar (int x)
12 if (x < 0)
13 return foo () + 8;
14 else if (x > 0)
15 return 2 * foo ();
16 else
17 return foo ();