[cfe-commits] r66437 - /cfe/trunk/lib/Analysis/GRExprEngine.cpp
    Ted Kremenek 
    kremenek at apple.com
       
    Mon Mar  9 13:26:48 PDT 2009
    
    
  
Author: kremenek
Date: Mon Mar  9 15:26:47 2009
New Revision: 66437
URL: http://llvm.org/viewvc/llvm-project?rev=66437&view=rev
Log:
Remove some dead spacing.  No functionality change.
Modified:
    cfe/trunk/lib/Analysis/GRExprEngine.cpp
Modified: cfe/trunk/lib/Analysis/GRExprEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/GRExprEngine.cpp?rev=66437&r1=66436&r2=66437&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/GRExprEngine.cpp (original)
+++ cfe/trunk/lib/Analysis/GRExprEngine.cpp Mon Mar  9 15:26:47 2009
@@ -1037,12 +1037,10 @@
   Loc LV = cast<Loc>(location);    
   
   // "Assume" that the pointer is not NULL.
-  
   bool isFeasibleNotNull = false;
   const GRState* StNotNull = Assume(state, LV, true, isFeasibleNotNull);
   
   // "Assume" that the pointer is NULL.
-  
   bool isFeasibleNull = false;
   GRStateRef StNull = GRStateRef(Assume(state, LV, false, isFeasibleNull),
                                  getStateManager());
    
    
More information about the cfe-commits
mailing list