diff options
author | Anna Zaks <ganna@apple.com> | 2011-11-05 05:20:56 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2011-11-05 05:20:56 +0000 |
commit | 84726dd72c8cef8dace8120f2c0bc591983d051d (patch) | |
tree | 4f97323b8c2f1cb3e6cbaff4ecf6b58770bf5394 /clang/utils | |
parent | 2ad0b0f8153ff1088223e4d0cb7632efaacf36c6 (diff) | |
download | bcm5719-llvm-84726dd72c8cef8dace8120f2c0bc591983d051d.tar.gz bcm5719-llvm-84726dd72c8cef8dace8120f2c0bc591983d051d.zip |
[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
Diffstat (limited to 'clang/utils')
-rwxr-xr-x | clang/utils/analyzer/CmpRuns.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/analyzer/CmpRuns.py b/clang/utils/analyzer/CmpRuns.py index 8eba9ebc7bc..b37c0022400 100755 --- a/clang/utils/analyzer/CmpRuns.py +++ b/clang/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) |