[cfe-commits] r143789 - /cfe/trunk/utils/analyzer/CmpRuns.py
Anna Zaks
ganna at apple.com
Fri Nov 4 22:20:56 PDT 2011
Author: zaks
Date: Sat Nov 5 00:20:56 2011
New Revision: 143789
URL: http://llvm.org/viewvc/llvm-project?rev=143789&view=rev
Log:
[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.
Modified:
cfe/trunk/utils/analyzer/CmpRuns.py
Modified: cfe/trunk/utils/analyzer/CmpRuns.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/analyzer/CmpRuns.py?rev=143789&r1=143788&r2=143789&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/CmpRuns.py (original)
+++ cfe/trunk/utils/analyzer/CmpRuns.py Sat Nov 5 00:20:56 2011
@@ -153,7 +153,7 @@
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)
More information about the cfe-commits
mailing list