summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa/formats/branch.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-12-17 10:54:17 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-12-17 10:54:17 -0500
commitc299c2562b68d75eb457c7206d3ec43e4cabcf14 (patch)
tree495926fd55add96b5051d1c2bb408a407da297d6 /src/arch/mips/isa/formats/branch.isa
parent220e99a29bb2531a8bba5e20125f5f182518fa6d (diff)
downloadgem5-c299c2562b68d75eb457c7206d3ec43e4cabcf14.tar.xz
Started removing "CodeBlock" objects from the mips isa description.
--HG-- extra : convert_revision : 2e174ecfce8c86732e1addfc23e961429b86a570
Diffstat (limited to 'src/arch/mips/isa/formats/branch.isa')
-rw-r--r--src/arch/mips/isa/formats/branch.isa4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/mips/isa/formats/branch.isa b/src/arch/mips/isa/formats/branch.isa
index 8c89fbfa2..a67f04dca 100644
--- a/src/arch/mips/isa/formats/branch.isa
+++ b/src/arch/mips/isa/formats/branch.isa
@@ -247,7 +247,7 @@ def format Branch(code,*opt_flags) {{
code += '} else {\n'
code += not_taken_code
- iop = InstObjParams(name, Name, 'Branch', CodeBlock(code), inst_flags)
+ iop = InstObjParams(name, Name, 'Branch', code, inst_flags)
header_output = BasicDeclare.subst(iop)
decoder_output = BasicConstructor.subst(iop)
decode_block = BasicDecode.subst(iop)
@@ -266,7 +266,7 @@ def format Jump(code, *opt_flags) {{
else:
inst_flags += (x, )
- iop = InstObjParams(name, Name, 'Jump', CodeBlock(code), inst_flags)
+ iop = InstObjParams(name, Name, 'Jump', code, inst_flags)
header_output = BasicDeclare.subst(iop)
decoder_output = BasicConstructor.subst(iop)
decode_block = BasicDecode.subst(iop)