2 20180226-1.c from the execute part of the gcc torture tests.
7 /* PR rtl-optimization/83496 */
8 /* Reported by Hauke Mehrtens <gcc@hauke-m.de> */
10 typedef unsigned long mp_digit
;
12 typedef struct { int used
, alloc
, sign
; mp_digit
*dp
; } mp_int
;
14 int mytest(mp_int
*a
, mp_digit b
);
16 int mytest(mp_int
*a
, mp_digit b
)
30 testTortureExecute (void)
32 mp_int i
= { 2, 0, -1 };
33 if (mytest (&i
, 0) != 1)