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

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

static unsigned int expr_hash_table_size = 1;

void
testTortureExecute (void)
{
  int del = 1;
  unsigned int i = 0;

  if (i < expr_hash_table_size && del)
    return;
  ASSERT (0);
}