Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / ssa-eustores.c
blob6797ce521ff5d13268d5228aa0e487510ddd22e4
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-eustores-all" } */
3 static int a;
4 int foo()
6 int alocal;
7 int b;
8 alocal = a;
9 b = alocal;
10 a = b;
12 /* We should eliminate the store back to a. */
13 /* { dg-final { scan-tree-dump-times "Eliminating useless store" 1 "eustores"} } */
14 /* { dg-final { cleanup-tree-dump "eustores" } } */