blob: 64e678c6a98662e32cbbd1f1cf221458244eff78 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* Used to crash in VRP. */
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
class FXObject;
class FXStream
{
public:FXStream (const FXObject *cont = __null);
FXStream & operator<< (const unsigned char &v);
};
bool fxsaveGIF (FXStream &store)
{
int bitsperpixel;
unsigned char c1;
c1 = 0x80;
c1 |= (bitsperpixel - 1) << 4;
store << c1;
return true;
}