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