aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/pr61306-3.c
blob: 6086e278627cc8158ef14131613f4a8c19ecfbfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
short a = -1;
int b;
char c;

int
main ()
{
  c = a;
  b = a | c;
  if (b != -1)
    __builtin_abort ();
  return 0;
}