Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / torture / pr33134.C
blob64e678c6a98662e32cbbd1f1cf221458244eff78
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 /* Used to crash in VRP.  */
5 /* Testcase by Martin Michlmayr <tbm@cyrius.com> */
7 class FXObject;
8 class FXStream
10   public:FXStream (const FXObject *cont = __null);
11   FXStream & operator<< (const unsigned char &v);
14 bool fxsaveGIF (FXStream &store)
16   int bitsperpixel;
17   unsigned char c1;
18   c1 = 0x80;
19   c1 |= (bitsperpixel - 1) << 4;
20   store << c1;
21   return true;