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

foo (a)
{
  return a | 12345;
}

bar (a)
{
  return a & (0xffff0000 | 12345);
}

foobar (a)
{
  return a - 128;
}