OSDN Git Service

PR testsuite/20772
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / opt / cse1.C
1 // PR optimization/6759
2 // This testcase ICEd on SPARC because folded REG_EQUAL
3 // note was note stored back and fold_rtx left invalid rtx
4 // in it.
5 // { dg-do compile }
6 // { dg-options "-O2" }
7
8 struct A
9 {
10   long long a;
11   A (unsigned short d) : a (d) {}
12 } x (65535);