diff options
Diffstat (limited to 'clang/lib/Checker/CallInliner.cpp')
-rw-r--r-- | clang/lib/Checker/CallInliner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Checker/CallInliner.cpp b/clang/lib/Checker/CallInliner.cpp index 3feca9784b9..d94994b1943 100644 --- a/clang/lib/Checker/CallInliner.cpp +++ b/clang/lib/Checker/CallInliner.cpp @@ -37,7 +37,7 @@ void clang::RegisterCallInliner(GRExprEngine &Eng) { bool CallInliner::EvalCallExpr(CheckerContext &C, const CallExpr *CE) { const GRState *state = C.getState(); const Expr *Callee = CE->getCallee(); - SVal L = state->getExprVal(Callee); + SVal L = state->getSVal(Callee); const FunctionDecl *FD = L.getAsFunctionDecl(); if (!FD) |