diff options
author | Tom Care <tcare@apple.com> | 2010-07-16 20:41:41 +0000 |
---|---|---|
committer | Tom Care <tcare@apple.com> | 2010-07-16 20:41:41 +0000 |
commit | df4ca423ec7d9b62842e112d1b824faa08b64810 (patch) | |
tree | ebe74672aed0a760164184326524521e32b8ac3f /lib/Checker/AnalysisConsumer.cpp | |
parent | 35dda71933d2e71b7a865b6ba41cf703e8b99c56 (diff) |
Improved false positive rate for the idempotent operations checker and moved it into the default path-sensitive analysis options.
- Added checks for static local variables, self assigned parameters, and truncating/extending self assignments
- Removed command line option (now default with --analyze)
- Updated test cases to pass with idempotent operation warnings
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/AnalysisConsumer.cpp')
-rw-r--r-- | lib/Checker/AnalysisConsumer.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Checker/AnalysisConsumer.cpp b/lib/Checker/AnalysisConsumer.cpp index 524f37e396..6c7a294b1d 100644 --- a/lib/Checker/AnalysisConsumer.cpp +++ b/lib/Checker/AnalysisConsumer.cpp @@ -341,9 +341,6 @@ static void ActionGRExprEngine(AnalysisConsumer &C, AnalysisManager& mgr, if (C.Opts.EnableExperimentalChecks) RegisterExperimentalChecks(Eng); - if (C.Opts.EnableIdempotentOperationChecker) - RegisterIdempotentOperationChecker(Eng); - // Set the graph auditor. llvm::OwningPtr<ExplodedNode::Auditor> Auditor; if (mgr.shouldVisualizeUbigraph()) { |