aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/shft.c
blob: 9b8488e48d360debe892067707c5e358ad526671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-additional-options "-std=gnu89" } */

foo (a)
     int a;
{
  int b = 8;

  if ((a << b) >= 0)
    return 1;
  return a;
}

main ()
{
  if (foo (0x00ffffff) == 1)
    puts ("y");
}