blob: 4e9d03a86daad6fafda74841422719a3271effcc (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-lim2-details" } */
int x;
int a[100];
struct a
{
int X;
int Y;
};
/* Word size is long long for 64-bit mingw target. */
#ifdef _WIN64
#define LONG long long
#else
#define LONG long
#endif
struct a arr[100];
void test1(int b)
{
unsigned i;
/* And here. */
for (i = 0; i < 100; i++)
{
arr[b+8].X += i;
arr[b+9].X += i;
}
}
void test2(struct a *A, int b)
{
unsigned i;
/* And here as well. */
for (i = 0; i < 100; i++)
{
A[b].X += i;
A[b+1].Y += i;
}
}
void test3(unsigned LONG b)
{
unsigned i;
/* And here. */
for (i = 0; i < 100; i++)
{
arr[b+8].X += i;
arr[b+9].X += i;
}
}
void test4(struct a *A, unsigned LONG b)
{
unsigned i;
/* And here as well. */
for (i = 0; i < 100; i++)
{
A[b].X += i;
A[b+1].Y += i;
}
}
/* long index not hoisted for avr target PR 36561 */
/* { dg-final { scan-tree-dump-times "Executing store motion of" 8 "lim2" { xfail { "avr-*-*" } } } } */
/* { dg-final { scan-tree-dump-times "Executing store motion of" 6 "lim2" { target { "avr-*-*" } } } } */
|