From 41241799ae1f918b6eb9c0d0b8abdf2ceb5b972a Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Mon, 21 May 2007 23:36:09 -0700 Subject: Change getDeviceAddressRanges to use bool for snoop arg. --HG-- extra : convert_revision : 832e52ba80cbab2f5bb6d5b5977a499d41b4d638 --- src/cpu/o3/lsq.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/o3/lsq.hh') diff --git a/src/cpu/o3/lsq.hh b/src/cpu/o3/lsq.hh index fd8f878a7..06de608e0 100644 --- a/src/cpu/o3/lsq.hh +++ b/src/cpu/o3/lsq.hh @@ -316,8 +316,8 @@ class LSQ { /** Returns the address ranges of this device. */ virtual void getDeviceAddressRanges(AddrRangeList &resp, - AddrRangeList &snoop) - { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,0)); } + bool &snoop) + { resp.clear(); snoop = true; } /** Timing version of receive. Handles writing back and * completing the load or store that has returned from -- cgit v1.2.3