PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20040911-1.c
blobe1b49e449f6a2a43e0b0111b0e62e295b2b96cd0
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-alias-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" "alias" } } */