[cfe-commits] r48400 - /cfe/trunk/Analysis/ValueState.cpp

Ted Kremenek kremenek at apple.com
Sat Mar 15 15:11:55 PDT 2008


Author: kremenek
Date: Sat Mar 15 17:11:54 2008
New Revision: 48400

URL: http://llvm.org/viewvc/llvm-project?rev=48400&view=rev
Log:
Fixed 80 col. violations.

Modified:
    cfe/trunk/Analysis/ValueState.cpp

Modified: cfe/trunk/Analysis/ValueState.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Analysis/ValueState.cpp?rev=48400&r1=48399&r2=48400&view=diff

==============================================================================
--- cfe/trunk/Analysis/ValueState.cpp (original)
+++ cfe/trunk/Analysis/ValueState.cpp Sat Mar 15 17:11:54 2008
@@ -196,7 +196,8 @@
   return UnknownVal();
 }
 
-ValueState* ValueStateManager::AddNE(ValueState* St, SymbolID sym, const llvm::APSInt& V) {
+ValueState* ValueStateManager::AddNE(ValueState* St, SymbolID sym,
+                                     const llvm::APSInt& V) {
 
   // First, retrieve the NE-set associated with the given symbol.
   ValueState::ConstNotEqTy::TreeTy* T = St->ConstNotEq.SlimFind(sym);  
@@ -213,7 +214,8 @@
   return getPersistentState(NewSt);
 }
 
-ValueState* ValueStateManager::AddEQ(ValueState* St, SymbolID sym, const llvm::APSInt& V) {
+ValueState* ValueStateManager::AddEQ(ValueState* St, SymbolID sym,
+                                     const llvm::APSInt& V) {
 
   // Create a new state with the old binding replaced.
   ValueState NewSt = *St;





More information about the cfe-commits mailing list