[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.

llvm-svn: 143789
This commit is contained in:
Anna Zaks 2011-11-05 05:20:56 +00:00
parent 2ad0b0f815
commit 84726dd72c
1 changed files with 1 additions and 1 deletions

View File

@ -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)