LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / pr20115-1.c
blob1be99a5c9650d8f15b881d559a97a4bfb1c40f06
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dom2" } */
4 extern int foo (void) __attribute__((pure));
6 int bar()
8 int a = foo ();
9 a += foo ();
10 return a;
13 /* Check that we only have one call to foo. */
14 /* { dg-final { scan-tree-dump-times "foo" 1 "dom2" } } */