aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr103314-1.c
blob: f4a631304219b6421dfd407217c9ce6fdd32798e (plain)
1
2
3
4
5
6
/* { dg-options "" } */
int main() {
  int t = 1;
  unsigned c = 0, d1 = t ? 1 ^ c ^ 1 >> (-1) : 0; /* { dg-warning "is negative"  } */
  return d1;
}