diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-05-04 21:21:11 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-05-04 21:21:11 -0400 |
commit | 34a5732bd3c6a146a62757a50d59b7960c41fc5f (patch) | |
tree | af4e410ce9cccdc4e26421cd44f4b6a5cec7c3d5 /arch/mips/isa | |
parent | de8eba689164b59679a3e3ef3550bc7abb5ecdce (diff) | |
download | gem5-34a5732bd3c6a146a62757a50d59b7960c41fc5f.tar.xz |
take-out debug only code
arch/mips/isa/formats/fp.isa:
take out debug-only code
--HG--
extra : convert_revision : 12c320b4b1432a626acefc496ec7a188c8b3fb66
Diffstat (limited to 'arch/mips/isa')
-rw-r--r-- | arch/mips/isa/formats/fp.isa | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/mips/isa/formats/fp.isa b/arch/mips/isa/formats/fp.isa index fe6bd437f..65b259e20 100644 --- a/arch/mips/isa/formats/fp.isa +++ b/arch/mips/isa/formats/fp.isa @@ -32,7 +32,6 @@ output decoder {{ // Primary format for float operate instructions: def format FloatOp(code, *flags) {{ - code = 'std::cout << "Floating Point Op" << std::endl;\n' + code iop = InstObjParams(name, Name, 'MipsStaticInst', CodeBlock(code), flags) header_output = BasicDeclare.subst(iop) decoder_output = BasicConstructor.subst(iop) @@ -42,7 +41,6 @@ def format FloatOp(code, *flags) {{ // Primary format for float64 operate instructions: def format Float64Op(code, *flags) {{ - code = 'std::cout << "Floating Point 64" << std::endl;\n' + code iop = InstObjParams(name, Name, 'MipsStaticInst', CodeBlock(code), flags) header_output = BasicDeclare.subst(iop) decoder_output = BasicConstructor.subst(iop) |