Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / 20030824-1.c
blobda1389e916c804294b6043428a1b93e903773de6
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-optimized" } */
4 struct A
6 int a,b;
7 };
9 int foo (int x, int y)
11 int i, j;
12 struct A a,b;
14 a.a = x;
15 b.b = y;
16 j = a.a;
17 i = b.b;
18 return i + j;
21 /* The addition should be optimized into 'y+x'. */
22 /* { dg-final { scan-tree-dump-times "\[xy\] \\+ \[xy]" 1 "optimized"} } */
23 /* { dg-final { cleanup-tree-dump "optimized" } } */