diff options
author | Jordan Rose <jordan_rose@apple.com> | 2013-09-13 00:45:22 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2013-09-13 00:45:22 +0000 |
commit | 3ea5886d14f19ac02e4a749f072e6831272d92ef (patch) | |
tree | 04072f95b49de29366ea297a5e6e758835e6b0da /clang/lib/StaticAnalyzer | |
parent | 8dddf8ff20fbe4cf7c81523cc84d1a2c4f27df94 (diff) | |
download | bcm5719-llvm-3ea5886d14f19ac02e4a749f072e6831272d92ef.tar.gz bcm5719-llvm-3ea5886d14f19ac02e4a749f072e6831272d92ef.zip |
Fix two incorrect comments.
Patch by Jared Grubb!
llvm-svn: 190652
Diffstat (limited to 'clang/lib/StaticAnalyzer')
-rw-r--r-- | clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp index d756c629568..4997f8d04ae 100644 --- a/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp @@ -25,8 +25,8 @@ // ^, ^= | 0 | | | x | x | | // <<, <<= | | | | x | 0 | | // >>, >>= | | | | x | 0 | | -// || | 1 | 1 | 1 | x | x | 1 | 1 -// && | 1 | x | x | 0 | 0 | x | x +// || | x | 1 | 1 | x | x | 1 | 1 +// && | x | x | x | 0 | 0 | x | x // = | x | | | | | | // == | 1 | | | | | | // >= | 1 | | | | | | |