diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-08-22 18:24:09 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-08-22 18:24:09 -0700 |
commit | 5836023ab2eb8f2c780e835078d518f061722d65 (patch) | |
tree | 95dd843d5fdda76bc1560fe29e03812b4c84dd9e | |
parent | 3d93afe348d5cdc9f83c28e37361391c4b7bf6a7 (diff) | |
download | gem5-5836023ab2eb8f2c780e835078d518f061722d65.tar.xz |
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.
-rw-r--r-- | src/arch/x86/isa/microops/base.isa | 4 |
1 files changed, 0 insertions, 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, \ |