From 87b657278d5177a82a5b54918dab30afe37d1dac Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 5 Jul 2011 16:52:57 -0700 Subject: ISAs: Streamline some spots where Mem is used in the ISA descriptions. --- src/arch/power/isa/formats/mem.isa | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/arch/power/isa/formats/mem.isa') diff --git a/src/arch/power/isa/formats/mem.isa b/src/arch/power/isa/formats/mem.isa index ebf0bfa21..0361ee998 100644 --- a/src/arch/power/isa/formats/mem.isa +++ b/src/arch/power/isa/formats/mem.isa @@ -125,15 +125,13 @@ def template LoadCompleteAcc {{ { Addr EA; Fault fault = NoFault; - %(mem_acc_type)s val; %(op_decl)s; %(op_rd)s; EA = xc->getEA(); - getMem(pkt, val, traceData); - *((%(mem_acc_type)s*)&Mem) = val; + getMem(pkt, Mem, traceData); if (fault == NoFault) { %(memacc_code)s; -- cgit v1.2.3