From: Gabe Black Date: Wed, 10 Oct 2007 00:21:04 +0000 (-0700) Subject: X86: Get rid of BasicOperate format which wasn't used and referred to SparcStaticInst X-Git-Tag: m5_2.0_beta4~55^2~6 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a76f734d0ba7d276e413576a9bf22a0bca0bbe2b;p=gem5.git X86: Get rid of BasicOperate format which wasn't used and referred to SparcStaticInst --HG-- extra : convert_revision : 5d2eac9a4b3f0fe5e3c3554d91acf8fee368c9dc --- diff --git a/src/arch/x86/isa/formats/basic.isa b/src/arch/x86/isa/formats/basic.isa index ea224d638..7aea7085f 100644 --- a/src/arch/x86/isa/formats/basic.isa +++ b/src/arch/x86/isa/formats/basic.isa @@ -147,12 +147,3 @@ def template BasicDecode {{ def template BasicDecodeWithMnemonic {{ return new %(class_name)s("%(mnemonic)s", machInst); }}; - -// The most basic instruction format... used only for a few misc. insts -def format BasicOperate(code, *flags) {{ - iop = InstObjParams(name, Name, 'SparcStaticInst', code, flags) - header_output = BasicDeclare.subst(iop) - decoder_output = BasicConstructor.subst(iop) - decode_block = BasicDecode.subst(iop) - exec_output = BasicExecute.subst(iop) -}};