blob: bed6a40c61e28eb2c56137ca1f51063f7418b3d8 [file] [log] [blame]
/* { dg-do run } */
int a, b, c, d;
unsigned e;
int main() {
c = e = -((a && 1) ^ ~(b || 0));
if (e < -1)
d = c;
if (!d)
__builtin_abort();
return 0;
}