From 5836023ab2eb8f2c780e835078d518f061722d65 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 22 Aug 2010 18:24:09 -0700 Subject: [PATCH] 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. --- src/arch/x86/isa/microops/base.isa | 4 ---- 1 file changed, 4 deletions(-) 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, \