summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-20080408-1.c
blob: 40499d04b1437147379d91211c14df10ecc7d0b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
   20080408-1.c from the execute part of the gcc torture tests.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

void
testTortureExecute (void)
{
  short ssi = 126;
  unsigned short usi = 65280;
  int fail = !(ssi < usi);
  if (fail)
    ASSERT (0);
  return;
}