aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/GRState.cpp
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@gmail.com>2008-11-03 05:18:34 +0000
committerZhongxing Xu <xuzhongxing@gmail.com>2008-11-03 05:18:34 +0000
commit4230da6fc517ee2a0568dba969060cb90a9ac87c (patch)
tree736b0a0c2ca11d63cacb735dee370200083ef3ee /lib/Analysis/GRState.cpp
parent817c67daf845b35a242cd9b68e9c5eccf09c63df (diff)
Fix 80-col violations.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58596 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRState.cpp')
-rw-r--r--lib/Analysis/GRState.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/GRState.cpp b/lib/Analysis/GRState.cpp
index ad057c2f09..a5bc429586 100644
--- a/lib/Analysis/GRState.cpp
+++ b/lib/Analysis/GRState.cpp
@@ -96,7 +96,7 @@ const GRState* GRStateManager::BindDecl(const GRState* St, const VarDecl* VD,
/// array of initializer values.
const GRState*
GRStateManager::BindCompoundLiteral(const GRState* state,
- const CompoundLiteralRegion* R,
+ const CompoundLiteralRegion* R,
const SVal* BegInit, const SVal* EndInit) {
Store oldStore = state->getStore();
@@ -239,7 +239,7 @@ GRStateManager::FindGDMContext(void* K,
return p.first;
}
-const GRState* GRStateManager::addGDM(const GRState* St, void* Key, void* Data){
+const GRState* GRStateManager::addGDM(const GRState* St, void* Key, void* Data){
GRState::GenericDataMap M1 = St->getGDM();
GRState::GenericDataMap M2 = GDMFactory.Add(M1, Key, Data);