aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/linear/call-complex-pointer.c
AgeCommit message (Collapse)AuthorFilesLines
2019-02-04target.c: ignore -m64 on archs where int32_t is a longLuc Van Oostenryck1-0/+1
If the flag '-m64' is used on a 32-bit architecture/machine having int32_t set to 'long', then these int32_t are forced to 64-bit ... So, ignore the effect of -m64 on these archs and ignore '64-bit only' tests on them. Reported-by: Uwe Kleine-König <uwe@kleine-koenig.org> Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> Tested-by: Uwe Kleine-König <uwe@kleine-koenig.org>
2018-08-06conditional branches can't accept arbitrary expressionsLuc Van Oostenryck1-5/+5
Conditional branches, or more exactly OP_CBR, can't accept arbitrary expression as condition. it is required to have an integer value. Fix this by adding a comparison against zero.
2017-12-21add testcases for the linearization of callsLuc Van Oostenryck1-0/+32
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>