projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7da3a8e
)
X86: Fix for compilation bug with new cache code.
author
Gabe Black
<gblack@eecs.umich.edu>
Wed, 1 Aug 2007 19:49:58 +0000
(12:49 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Wed, 1 Aug 2007 19:49:58 +0000
(12:49 -0700)
--HG--
extra : convert_revision :
073c6db0796cd2c11b8293b382b438a2a959b821
src/arch/x86/isa/microops/ldstop.isa
patch
|
blob
|
history
diff --git
a/src/arch/x86/isa/microops/ldstop.isa
b/src/arch/x86/isa/microops/ldstop.isa
index 18cbc6082742e854e2eaae89817e85c34250201c..b8cddb09bf69cb1074048de5e0f3e4ab4bfe5906 100644
(file)
--- a/
src/arch/x86/isa/microops/ldstop.isa
+++ b/
src/arch/x86/isa/microops/ldstop.isa
@@
-170,7
+170,7
@@
def template MicroLoadCompleteAcc {{
%(op_rd)s;
Mem = pkt->get<typeof(Mem)>();
- int offset = pkt->
flags
;
+ int offset = pkt->
req->getFlags()
;
Mem = bits(Mem, (offset + dataSize) * 8 - 1, offset * 8);
%(code)s;