summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-20001221-1.c
blob: 368d51d0b47e896a5e0aa53efe04db3ed9c6c9ec (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
/*
   20001221-1.c from the execute part of the gcc torture tests.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 184
#endif

void
testTortureExecute (void)
{
// TODO: Enable as more ports support long long!
#if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
  unsigned long long a;
  if (! (a = 0xfedcba9876543210ULL))
    ASSERT (0);
  return;
#endif
}