From: Anna Zaks Date: Sat, 5 Nov 2011 05:20:56 +0000 (+0000) Subject: [analyzer] Relax the cmp criteria for analyzer reports. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1e73670b383163e22d5827cfe71e9ba2184818b;p=clang [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 --- 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)