blob: babb9d45a2813a4fffdde7f8480317f7001dd2bc [file] [log] [blame]
/* this is another case where phiopt
would create -signed1bit which is undefined. */
struct {
int a:1;
} b;
int *c = (int *)&b, d;
int main() {
d = c && (b.a = (d < 0) ^ 3);
if (d != 1)
__builtin_abort();
return 0;
}