Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20040911-1.c
blobac2b961d9dc9a018fcdb795d1efeb728e22a4629
1 /* Verify that points-to information is handled properly for PTR + OFFSET
2 pointer arithmetics. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -fdump-tree-salias-vops" } */
6 char buf[4], *q;
7 int foo (int i)
9 char c, *p;
10 q = &c;
11 p = buf;
12 if (i)
13 p = p + 3;
14 else
15 p = p + 2;
16 *p = 6;
17 c = 8;
18 return *p;
21 /* { dg-final { scan-tree-dump-not "VUSE <c" "salias" } } */
22 /* { dg-final { cleanup-tree-dump "salias" } } */