summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2008-11-14 04:55:30 -0800
committerNathan Binkert <nate@binkert.org>2008-11-14 04:55:30 -0800
commit5711282f87afb609c79d657ed6aa8c9259b5b827 (patch)
tree399daee55331d1a8b0664a4a7d7d493f3b027708 /src/arch/mips/isa
parent7a4d75bae31cfe2064fe0718c7f982f769659b3c (diff)
downloadgem5-5711282f87afb609c79d657ed6aa8c9259b5b827.tar.xz
Fix a bunch of bugs I introduced when I changed the flags stuff for packets.
I did some of the flags and assertions wrong. Thanks to Brad Beckmann for pointing this out. I should have run the opt regressions instead of the fast. I also screwed up some of the logical functions in the Flags class.
Diffstat (limited to 'src/arch/mips/isa')
-rw-r--r--src/arch/mips/isa/formats/util.isa2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/mips/isa/formats/util.isa b/src/arch/mips/isa/formats/util.isa
index 786a964d4..f729cbf63 100644
--- a/src/arch/mips/isa/formats/util.isa
+++ b/src/arch/mips/isa/formats/util.isa
@@ -62,7 +62,7 @@ def LoadStoreBase(name, Name, ea_code, memacc_code, mem_flags, inst_flags,
if mem_flags:
mem_flags = [ 'Request::%s' % flag for flag in mem_flags ]
- s = '\n\tmemAccessFlags.reset(' + string.join(mem_flags, '|') + ');'
+ s = '\n\tmemAccessFlags = ' + string.join(mem_flags, '|') + ';'
iop.constructor += s
memacc_iop.constructor += s