summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa/formats/int.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-12-18 12:19:30 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-12-18 12:19:30 -0500
commit9e7dc343832f473b2058d4f9b39a27430142006f (patch)
tree5f61750159b2b3e64468155cb2d9a5d24a3d8524 /src/arch/mips/isa/formats/int.isa
parentc3ec52346b99d398916765679877686c109e3513 (diff)
parentd19d7aa8a55cd4413ab00de69deb237d89d5ef4a (diff)
downloadgem5-9e7dc343832f473b2058d4f9b39a27430142006f.tar.xz
Merge zizzer.eecs.umich.edu:/.automount/zower/eecshome/m5/newmem
into zizzer.eecs.umich.edu:/z/m5/Bitkeeper/sparco3 --HG-- extra : convert_revision : f17800685609d8353ec14676f45fbb123fc4e6c3
Diffstat (limited to 'src/arch/mips/isa/formats/int.isa')
-rw-r--r--src/arch/mips/isa/formats/int.isa7
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)
}};