blob: 505c8302c2b28417354cc10607e692fa58328e9a (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
cmpsi-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
void dummy (void) {}
f1 (unsigned int x, unsigned int y)
{
if (x == 0)
dummy ();
x -= y;
/* 0xfffffff2 < 0x80000000? */
if (x < ~(~(unsigned int) 0 >> 1))
ASSERT (0);
return x;
}
f2 (unsigned long int x, unsigned long int y)
{
if (x == 0)
dummy ();
x -= y;
/* 0xfffffff2 < 0x80000000? */
if (x < ~(~(unsigned long int) 0 >> 1))
ASSERT (0);
return x;
}
void
testTortureExecute (void)
{
/* 0x7ffffff3 0x80000001 */
f1 ((~(unsigned int) 0 >> 1) - 12, ~(~(unsigned int) 0 >> 1) + 1);
f2 ((~(unsigned long int) 0 >> 1) - 12, ~(~(unsigned long int) 0 >> 1) + 1);
return;
}
|