Arm: Fix ldrd offset range [PR115153]
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / copy-headers.c
blobf4f2b2aa70bdaf6598211625f32a462c6a397ae0
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-ch2-details" } */
4 extern int foo (int);
6 void bla (void)
8 int i, n = foo (0);
10 for (i = 0; i < n; i++)
11 foo (i);
14 /* There should be a header duplicated. */
15 /* { dg-final { scan-tree-dump-times "Duplicating header of the" 1 "ch2"} } */