From 500f49fe258ae0564cb9b33b1abb539565e9b7ab Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Mon, 8 Feb 2010 09:30:02 +0000 Subject: Rename: GRState::getSVal(Stmt*) => getExprVal(), GRState::getSVal(MemRegion*) => Load(). llvm-svn: 95541 --- clang/lib/Checker/RegionStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/lib/Checker/RegionStore.cpp') diff --git a/clang/lib/Checker/RegionStore.cpp b/clang/lib/Checker/RegionStore.cpp index c08be0cff62..05b385cc587 100644 --- a/clang/lib/Checker/RegionStore.cpp +++ b/clang/lib/Checker/RegionStore.cpp @@ -1859,7 +1859,7 @@ GRState const *RegionStoreManager::EnterStackFrame(GRState const *state, // Copy the arg expression value to the arg variables. Store store = state->getStore(); for (; AI != AE; ++AI, ++PI) { - SVal ArgVal = state->getSVal(*AI); + SVal ArgVal = state->getExprVal(*AI); store = Bind(store, ValMgr.makeLoc(MRMgr.getVarRegion(*PI, frame)), ArgVal); } -- cgit v1.2.3