Merge from mainline.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-dse-3.c
blob4292f2384a5a67edb8fbcb16fabd532674c5d584
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dse1" } */
4 char Bool_Glob;
5 void f(void)
7 Bool_Glob = 0;
8 Bool_Glob = 1;
11 /* We should eliminate the first assignment to *p, but not the second. */
12 /* { dg-final { scan-tree-dump-times "Bool_Glob = 0" 0 "dse1"} } */
13 /* { dg-final { scan-tree-dump-times "Bool_Glob = 1" 1 "dse1"} } */
15 /* { dg-final { cleanup-tree-dump "dse1" } } */