blob: 706921b0dbe1119c71cd2398af4ccf702690ef9b [file] [log] [blame]
/* PR c/42721 */
extern void abort (void);
static unsigned long long
foo (unsigned long long x, unsigned long long y)
{
return x / y;
}
static int a, b;
int
main (void)
{
unsigned long long c = 1;
b ^= c && (foo (a, -1ULL) != 1L);
if (b != 1)
abort ();
return 0;
}