From ee99fd45abadf5eb8e10d76715a5c29500cf720d Mon Sep 17 00:00:00 2001 From: jiang <30155751@qq.com> Date: Fri, 2 May 2014 00:39:50 +0800 Subject: [PATCH] Add a comment. ref: 2a8905c93b4f67a21e3dbf297c3e93c598831528 Sorry, I used the wrong command, I did not mean it. Thank grischka --- x86_64-gen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x86_64-gen.c b/x86_64-gen.c index a671e8eb..0307792e 100644 --- a/x86_64-gen.c +++ b/x86_64-gen.c @@ -1207,19 +1207,19 @@ doing: mode = classify_x86_64_arg(&vtop->type, &type, &size, &align, ®_count); switch (mode) { case x86_64_mode_x87: - /* ±ØÐë±£Ö¤ TREG_ST0 µÄΨһ */ + /* Must ensure TREG_ST0 only */ if((vtop->type.t & VT_BTYPE) == VT_STRUCT){ vdup(); vtop->type = type; gv(RC_ST0); args_size -= size; gen_offs_sp(0xdb, 0x107, args_size); - vtop--;//ÊÍ·Å TREG_ST0 + vtop--;//Release TREG_ST0 }else{ gv(RC_ST0); args_size -= size; gen_offs_sp(0xdb, 0x107, args_size); - vtop->r = VT_CONST;//ÊÍ·Å TREG_ST0 + vtop->r = VT_CONST;//Release TREG_ST0 } break; case x86_64_mode_memory: -- 2.11.4.GIT