[cfe-commits] r109893 -	/cfe/trunk/lib/Checker/IdempotentOperationChecker.cpp
    Tom Care 
    tcare at apple.com
       
    Fri Jul 30 14:14:15 PDT 2010
    
    
  
Author: tcare
Date: Fri Jul 30 16:14:15 2010
New Revision: 109893
URL: http://llvm.org/viewvc/llvm-project?rev=109893&view=rev
Log:
Uncomment unfinished work bailout in IdempotentOperationsChecker.
Modified:
    cfe/trunk/lib/Checker/IdempotentOperationChecker.cpp
Modified: cfe/trunk/lib/Checker/IdempotentOperationChecker.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Checker/IdempotentOperationChecker.cpp?rev=109893&r1=109892&r2=109893&view=diff
==============================================================================
--- cfe/trunk/lib/Checker/IdempotentOperationChecker.cpp (original)
+++ cfe/trunk/lib/Checker/IdempotentOperationChecker.cpp Fri Jul 30 16:14:15 2010
@@ -298,8 +298,8 @@
                                                   BugReporter &BR,
                                                   bool hasWorkRemaining) {
   // If there is any work remaining we cannot be 100% sure about our warnings
-//  if (hasWorkRemaining)
-//    return;
+  if (hasWorkRemaining)
+    return;
 
   // Iterate over the hash to see if we have any paths with definite
   // idempotent operations.
    
    
More information about the cfe-commits
mailing list