blob: a64c46c7edcdc71d15a3c9e06c02557b4d0de8e9 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O" } */
#if __SIZEOF_INT__ < 4
#define int __INT32_TYPE__
#endif
int _setjmp ();
void abcd ();
void abcde ();
void compiler_corruption_function(int flags)
{
int nowait = flags & 1048576, isexpand = flags & 8388608;
abcd();
_setjmp(flags);
if (nowait && isexpand)
flags &= 0;
abcde();
}