]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr20115-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr20115-1.c
CommitLineData
90c1d75a 1/* { dg-do compile } */
b5f34b42 2/* { dg-options "-O2 -fdump-tree-dom2" } */
90c1d75a
DN
3
4extern int foo (void) __attribute__((pure));
5
6int bar()
7{
8 int a = foo ();
9 a += foo ();
10 return a;
11}
12
13/* Check that we only have one call to foo. */
b5f34b42 14/* { dg-final { scan-tree-dump-times "foo" 1 "dom2" } } */