summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2011-11-05 05:20:56 +0000
committerAnna Zaks <ganna@apple.com>2011-11-05 05:20:56 +0000
commite1e73670b383163e22d5827cfe71e9ba2184818b (patch)
tree3bb87fc7dcf0d4007cad4802bdc596aaf1696f4a /utils
parent0e5df1a587187490e06d6421199feabbbecc6032 (diff)
[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
Diffstat (limited to 'utils')
-rwxr-xr-xutils/analyzer/CmpRuns.py2
1 files changed, 1 insertions, 1 deletions
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)