From f26fdaefd8b35489f26462992010b9ecd76d8fe3 Mon Sep 17 00:00:00 2001 From: jiang <30155751@qq.com> Date: Mon, 23 Jun 2014 01:08:54 +0800 Subject: [PATCH] revert vstore() --- tccgen.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tccgen.c b/tccgen.c index b2a77178..387b9863 100644 --- a/tccgen.c +++ b/tccgen.c @@ -2552,6 +2552,11 @@ ST_FUNC void vstore(void) /* remove bit field info to avoid loops */ vtop[-1].type.t = ft & ~(VT_BITFIELD | (-1 << VT_STRUCT_SHIFT)); + /* duplicate source into other register */ + gv_dup(); + vswap(); + vrott(3); + if((ft & VT_BTYPE) == VT_BOOL) { gen_cast(&vtop[-1].type); vtop[-1].type.t = (vtop[-1].type.t & ~VT_BTYPE) | (VT_BYTE | VT_UNSIGNED); @@ -2583,6 +2588,9 @@ ST_FUNC void vstore(void) gen_op('|'); /* store result */ vstore(); + + /* pop off shifted source from "duplicate source..." above */ + vpop(); } else { #ifdef CONFIG_TCC_BCHECK /* bound check case */ -- 2.11.4.GIT