summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa/formats/mem.isa
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/mips/isa/formats/mem.isa')
-rw-r--r--src/arch/mips/isa/formats/mem.isa4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/mips/isa/formats/mem.isa b/src/arch/mips/isa/formats/mem.isa
index c8e85a754..81e231810 100644
--- a/src/arch/mips/isa/formats/mem.isa
+++ b/src/arch/mips/isa/formats/mem.isa
@@ -117,7 +117,7 @@ output exec {{
/** return data in cases where there the size of data is only
known in the packet
*/
- uint64_t getStoreData(Packet *packet) {
+ uint64_t getStoreData(%(CPU_exec_context)s *xc, Packet *packet) {
switch (packet->getSize())
{
case 8:
@@ -542,7 +542,7 @@ def template StoreCompleteAcc {{
if (fault == NoFault) {
%(op_wb)s;
- if (traceData) { traceData->setData(getStoreData(pkt)); }
+ if (traceData) { traceData->setData(getStoreData(xc, pkt)); }
}
return fault;