Merge the integer members of union CValue into "uint64_t i".

This commit is contained in:
Edmund Grimley Evans
2015-11-17 19:09:35 +00:00
parent 3712c958f4
commit 569fba6db9
10 changed files with 135 additions and 147 deletions

View File

@ -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--;
}