]> granicus.if.org Git - clang/commitdiff
Fixed 80 col. violations.
authorTed Kremenek <kremenek@apple.com>
Sat, 15 Mar 2008 22:11:54 +0000 (22:11 +0000)
committerTed Kremenek <kremenek@apple.com>
Sat, 15 Mar 2008 22:11:54 +0000 (22:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48400 91177308-0d34-0410-b5e6-96231b3b80d8

Analysis/ValueState.cpp

index 97df578eca3c7e609a4463e31e25fcb6f8c10c07..c0ed7aa882af027c698c861a0183f635d86727d4 100644 (file)
@@ -196,7 +196,8 @@ RVal ValueStateManager::GetRVal(ValueState* St, LVal LV, QualType T) {
   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 @@ ValueState* ValueStateManager::AddNE(ValueState* St, SymbolID sym, const llvm::A
   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;