blob: f2138de4c6040ee56ae795fc82e949d8e2b4c2cb (
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
|
/*
20180226-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
/* PR rtl-optimization/83496 */
/* Reported by Hauke Mehrtens <gcc@hauke-m.de> */
typedef unsigned long mp_digit;
typedef struct { int used, alloc, sign; mp_digit *dp; } mp_int;
int mytest(mp_int *a, mp_digit b);
int mytest(mp_int *a, mp_digit b)
{
if (a->sign == 1)
return -1;
if (a->used > 1)
return 1;
if (a->dp[0] > b)
return 1;
if (a->dp[0] < b)
return -1;
return 0;
}
void
testTortureExecute (void)
{
mp_int i = { 2, 0, -1 };
if (mytest (&i, 0) != 1)
ASSERT (0);
return;
}
|