blob: 1eefccc1a3b1e67b014d54b8d75e973b339a39d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-rtl-loop2_invariant" } */
/* { dg-skip-if "unexpected IV" { "hppa*-*-* mips*-*-* visium-*-* powerpc*-*-* riscv*-*-*" } } */
/* Load immediate on condition is available from z13 on and prevents moving
the load out of the loop, so always run this test with -march=zEC12 that
does not have load immediate on condition. */
/* { dg-additional-options "-march=zEC12" { target { s390*-*-* } } } */
void
f (int *a, int *b)
{
int i;
for (i = 0; i < 100; i++)
{
int d = 42;
a[i] = d;
if (i % 2)
d = i;
b[i] = d;
}
}
/* Load of 42 is moved out of the loop, introducing a new pseudo register. */
/* { dg-final { scan-rtl-dump-times "Decided" 1 "loop2_invariant" } } */
/* { dg-final { scan-rtl-dump-not "without introducing a new temporary register" "loop2_invariant" } } */
|