summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-20050111-1.c
blob: 51657e778df21c162ab6559e3587e4ed1fdab631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
   20050111-1.c from the execute part of the gcc torture suite.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

// Some ports do not yet support long long
#if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)

/* PR middle-end/19084, rtl-optimization/19348 */

unsigned int
foo (unsigned long long x)
{
  unsigned int u;

  if (x == 0)
    return 0;
  u = (unsigned int) (x >> 32);
  return u;
}

unsigned long long
bar (unsigned short x)
{
  return (unsigned long long) x << 32;
}
#endif

void
testTortureExecute (void)
{
// Some ports do not yet support long long
#if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)

  if (sizeof (long long) != 8)
    return;

  if (foo (0) != 0)
    ASSERT (0);

  if (foo (0xffffffffULL) != 0)
    ASSERT (0);
  if (foo (0x25ff00ff00ULL) != 0x25)
    ASSERT (0);
  if (bar (0) != 0)
    ASSERT (0);
  if (bar (0x25) != 0x2500000000ULL)
    ASSERT (0);
  return;
#endif
}