OSDN Git Service

Index: gcc/ChangeLog
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / volatile1.c
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 }