1 /* PR c/12553: we were erroneously setting TREE_SIDE_EFFECTS on &y, which
2    confused tree-ssa.  */
3 
f()4 void f()
5 {
6   int x;
7   volatile int y;
8   &x == &y;
9 }
10