X86: Fix for compilation bug with new cache code.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 1 Aug 2007 19:49:58 +0000 (12:49 -0700)
committerGabe 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

index 18cbc6082742e854e2eaae89817e85c34250201c..b8cddb09bf69cb1074048de5e0f3e4ab4bfe5906 100644 (file)
@@ -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;