aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/shift.c
blob: 9479126dba8b18b36b24aadca28982eaae7d3258 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-additional-options "-std=gnu89" } */

foo (a)
{
  if (a >= 0)
    return (unsigned) a << 10;
  else
    return (int) a << 10;
}