blob: d16e73d1dc3accc5ea70075a4505f3832d81b8bf (
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
|
/* { dg-do compile } */
/* { dg-options "-g -O3 -fdump-tree-optimized -fvar-tracking-assignments -fno-selective-scheduling -fno-selective-scheduling2 -fno-ipa-vrp" } */
int __attribute__((noinline))
f1 (int i)
{
char a[i + 1];
char b[i + 2];
b[1] = 3;
a[0] = 5;
return a[0] + b[1];
}
int
main ()
{
volatile int j;
int x = 5;
j = f1 (x);
return 0;
}
/* One debug source bind is generated for the parameter, and one to describe the
sizes of a and b. */
/* { dg-final { scan-tree-dump-times " s=> i" 2 "optimized" } } */
|