From 569fba6db9c12916bd2802a7ee46dc5609118e0b Mon Sep 17 00:00:00 2001 From: Edmund Grimley Evans Date: Tue, 17 Nov 2015 19:09:35 +0000 Subject: Merge the integer members of union CValue into "uint64_t i". --- tccpe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tccpe.c') diff --git a/tccpe.c b/tccpe.c index 0fd8c36..eb13d2d 100644 --- a/tccpe.c +++ b/tccpe.c @@ -1473,9 +1473,9 @@ ST_FUNC SValue *pe_getimport(SValue *sv, SValue *v2) load(r2, v2); v2->r = r2; - if (sv->c.ui) { + if ((uint32_t)sv->c.i) { vpushv(v2); - vpushi(sv->c.ui); + vpushi(sv->c.i); gen_opi('+'); *v2 = *vtop--; } -- cgit v1.3.1