From e1e73670b383163e22d5827cfe71e9ba2184818b Mon Sep 17 00:00:00 2001 From: Anna Zaks Date: Sat, 5 Nov 2011 05:20:56 +0000 Subject: [PATCH] [analyzer] Relax the cmp criteria for analyzer reports. Until we find out a way to easily find out what changed by looking at the logs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143789 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/analyzer/CmpRuns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/analyzer/CmpRuns.py b/utils/analyzer/CmpRuns.py index 8eba9ebc7b..b37c002240 100755 --- a/utils/analyzer/CmpRuns.py +++ b/utils/analyzer/CmpRuns.py @@ -153,7 +153,7 @@ def compareResults(A, B): while eltsA and eltsB: a = eltsA.pop() b = eltsB.pop() - if a.data == b.data: + if a.data['location'] == b.data['location']: res.append((a, b, 0)) elif a.data > b.data: neqA.append(a) -- 2.40.0