diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-12-17 10:54:17 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-12-17 10:54:17 -0500 |
commit | c299c2562b68d75eb457c7206d3ec43e4cabcf14 (patch) | |
tree | 495926fd55add96b5051d1c2bb408a407da297d6 /src/arch/mips/isa/formats/trap.isa | |
parent | 220e99a29bb2531a8bba5e20125f5f182518fa6d (diff) | |
download | gem5-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/trap.isa')
-rw-r--r-- | src/arch/mips/isa/formats/trap.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/mips/isa/formats/trap.isa b/src/arch/mips/isa/formats/trap.isa index b9066f374..96d1167d2 100644 --- a/src/arch/mips/isa/formats/trap.isa +++ b/src/arch/mips/isa/formats/trap.isa @@ -73,7 +73,7 @@ def format Trap(code, *flags) {{ code = 'warn(\"' code += 'Trap Exception Handler Is Currently Not Implemented.' code += '\");' - iop = InstObjParams(name, Name, 'MipsStaticInst', CodeBlock(code), flags) + iop = InstObjParams(name, Name, 'MipsStaticInst', code, flags) header_output = BasicDeclare.subst(iop) decoder_output = BasicConstructor.subst(iop) decode_block = BasicDecode.subst(iop) |