aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr93333.c
blob: 801959bea75fb72661771194d4e401f68917ddb5 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR target/93333 */

unsigned
foo (int b, int c, int d, unsigned long e, int x, int y, int g, int h,
     unsigned i)
{
  e >>= b;
  i >>= e & 31;
  return i & 1;
}