diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-12-17 23:09:36 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-12-17 23:09:36 -0800 |
commit | d19d7aa8a55cd4413ab00de69deb237d89d5ef4a (patch) | |
tree | db697d8110e815ed928fac3cf674ff0bb0220e0f /src/arch/mips/isa/formats | |
parent | 968048f56a5f866b267ad9961cbe8d16788bcc89 (diff) | |
download | gem5-d19d7aa8a55cd4413ab00de69deb237d89d5ef4a.tar.xz |
Minor cleanup of new snippet/subst code.
--HG--
extra : convert_revision : d81e0d1356f3433e8467e407d66d4afb95614748
Diffstat (limited to 'src/arch/mips/isa/formats')
-rw-r--r-- | src/arch/mips/isa/formats/int.isa | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/arch/mips/isa/formats/int.isa b/src/arch/mips/isa/formats/int.isa index e9b096f56..2f131f6d9 100644 --- a/src/arch/mips/isa/formats/int.isa +++ b/src/arch/mips/isa/formats/int.isa @@ -240,11 +240,6 @@ def format IntImmOp(code, *opt_flags) {{ }}; def format HiLoOp(code, *opt_flags) {{ - if '.sd' in code: - code = 'int64_t ' + code - elif '.ud' in code: - code = 'uint64_t ' + code - code += 'HI = val<63:32>;\n' code += 'LO = val<31:0>;\n' @@ -260,7 +255,7 @@ def format HiLoMiscOp(code, *opt_flags) {{ header_output = BasicDeclare.subst(iop) decoder_output = BasicConstructor.subst(iop) decode_block = BasicDecode.subst(iop) - exec_output = HiLoExecute.subst(iop) + exec_output = BasicExecute.subst(iop) }}; |