From: Gabe Black Date: Wed, 22 Jun 2011 02:28:14 +0000 (-0700) Subject: X86: Eliminate an unused argument for building store microops. X-Git-Tag: stable_2012_02_02~196 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=efb9f7c2ae124dacdd409f74ec7c4a8ab4fc032b;p=gem5.git X86: Eliminate an unused argument for building store microops. --- diff --git a/src/arch/x86/isa/microops/ldstop.isa b/src/arch/x86/isa/microops/ldstop.isa index 245859722..811b35c8a 100644 --- a/src/arch/x86/isa/microops/ldstop.isa +++ b/src/arch/x86/isa/microops/ldstop.isa @@ -177,7 +177,6 @@ def template MicroStoreExecute {{ fault = write(xc, Mem, EA, memFlags); if(fault == NoFault) { - %(post_code)s; %(op_wb)s; } } @@ -411,8 +410,7 @@ let {{ '(StoreCheck << FlagShift) | Request::LOCKED') defineMicroLoadOp('Ldfp', 'FpData.uqw = Mem;', big = False) - def defineMicroStoreOp(mnemonic, code, \ - postCode="", completeCode="", mem_flags="0"): + def defineMicroStoreOp(mnemonic, code, completeCode="", mem_flags="0"): global header_output global decoder_output global exec_output @@ -423,7 +421,6 @@ let {{ # Build up the all register version of this micro op iop = InstObjParams(name, Name, 'X86ISA::LdStOp', {"code": code, - "post_code": postCode, "complete_code": completeCode, "ea_code": calculateEA}) header_output += MicroLdStOpDeclare.subst(iop)