diff options
author | Nathan Binkert <nate@binkert.org> | 2008-11-14 04:55:30 -0800 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-11-14 04:55:30 -0800 |
commit | 5711282f87afb609c79d657ed6aa8c9259b5b827 (patch) | |
tree | 399daee55331d1a8b0664a4a7d7d493f3b027708 /src/arch/alpha/isa/mem.isa | |
parent | 7a4d75bae31cfe2064fe0718c7f982f769659b3c (diff) | |
download | gem5-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/alpha/isa/mem.isa')
-rw-r--r-- | src/arch/alpha/isa/mem.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/alpha/isa/mem.isa b/src/arch/alpha/isa/mem.isa index b4e10e849..cd5e117ec 100644 --- a/src/arch/alpha/isa/mem.isa +++ b/src/arch/alpha/isa/mem.isa @@ -678,7 +678,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 |