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

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

void
testTortureExecute (void)
{
  unsigned long val = 1;

  if (val > (unsigned long) ~0)
    ASSERT(0);
  return;
}