diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-03-15 22:11:54 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-03-15 22:11:54 +0000 |
commit | 056fb6be98364aa17776f92fcd5fad0f2b2ff099 (patch) | |
tree | 64fb9ddc992bbe0ffdf4ae37b04fc5dfdcdaacbb | |
parent | f5227057b1f2cd6944b1ceef4461c74445694f04 (diff) | |
download | bcm5719-llvm-056fb6be98364aa17776f92fcd5fad0f2b2ff099.tar.gz bcm5719-llvm-056fb6be98364aa17776f92fcd5fad0f2b2ff099.zip |
Fixed 80 col. violations.
llvm-svn: 48400
-rw-r--r-- | clang/Analysis/ValueState.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/Analysis/ValueState.cpp b/clang/Analysis/ValueState.cpp index 97df578eca3..c0ed7aa882a 100644 --- a/clang/Analysis/ValueState.cpp +++ b/clang/Analysis/ValueState.cpp @@ -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; |