From: Gabe Black Date: Mon, 23 Aug 2010 01:24:09 +0000 (-0700) Subject: X86: Get rid of the unused getAllocator on the python base microop class. X-Git-Tag: stable_2012_02_02~924 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5836023ab2eb8f2c780e835078d518f061722d65;p=gem5.git X86: Get rid of the unused getAllocator on the python base microop class. This function is always overridden, and doesn't actually have the right signature. --- diff --git a/src/arch/x86/isa/microops/base.isa b/src/arch/x86/isa/microops/base.isa index 12bd7b6a5..2f8e04ab7 100644 --- a/src/arch/x86/isa/microops/base.isa +++ b/src/arch/x86/isa/microops/base.isa @@ -93,10 +93,6 @@ let {{ text += ", %s" % self.cppBool(val) return text - def getAllocator(self, mnemonic, *microFlags): - return 'new %s(machInst, %s)' % \ - (self.className, mnemonic, self.microFlagsText(microFlags)) - def getGeneratorDef(self, micropc): return self.generatorTemplate % \ (self.className, micropc, \