From 925d648b9df356e8c24507c552099554bea2bc8c Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Sat, 11 Jan 2020 20:19:29 +0100 Subject: [PATCH] minor change --- tools/CacheAnalyzer/cacheLib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/CacheAnalyzer/cacheLib.py b/tools/CacheAnalyzer/cacheLib.py index 7917881..842b14e 100755 --- a/tools/CacheAnalyzer/cacheLib.py +++ b/tools/CacheAnalyzer/cacheLib.py @@ -353,7 +353,7 @@ def getClearHLAddresses(level, cacheSetList, cBox, doNotUseOtherCBoxes): return clearAddresses L3SetToWayIDMap = dict() -def getAddresses(level, wayID, cacheSetList, cBox=1, cSlice=0, clearHL=True): +def getAddresses(level, wayID, cacheSetList, cBox=1, cSlice=0): lineSize = getCacheInfo(1).lineSize if level <= 2 or (level == 3 and getCacheInfo(3).nSlices is None): @@ -465,7 +465,7 @@ def getCodeForCacheExperiment(level, seq, initSeq, cacheSetList, cBox, cSlice, c flush = '!' in seqEl s = [overrideSet] if overrideSet is not None else cacheSetList - addresses = getAddresses(level, wayID, s, cBox=cBox, cSlice=cSlice, clearHL=clearHL) + addresses = getAddresses(level, wayID, s, cBox=cBox, cSlice=cSlice) if clearHLAddrList is not None and not flush: addrLists.append(clearHLAddrList)