aboutsummaryrefslogtreecommitdiff
path: root/lib/StaticAnalyzer/Core/ExprEngine.cpp
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2012-06-02 00:40:52 +0000
committerAnna Zaks <ganna@apple.com>2012-06-02 00:40:52 +0000
commitc0e71a15bce9bb8c0d4ec1c42fab70c03140f9e0 (patch)
treeab99f8c7d0d7411288131270b840b4e0349ebc04 /lib/StaticAnalyzer/Core/ExprEngine.cpp
parent183ff2aaacbc1995ed64d5e2ffea4456fd871633 (diff)
[analyzer] Rely on canBeInlined utility instead of checking CallExpr
explicitly. This will make it easier to add inlining support to more expressions. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157870 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/ExprEngine.cpp')
-rw-r--r--lib/StaticAnalyzer/Core/ExprEngine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/StaticAnalyzer/Core/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp
index 22e5bc828e..6531265807 100644
--- a/lib/StaticAnalyzer/Core/ExprEngine.cpp
+++ b/lib/StaticAnalyzer/Core/ExprEngine.cpp
@@ -250,7 +250,7 @@ static bool shouldRemoveDeadBindings(AnalysisManager &AMgr,
return true;
// Run before processing a call.
- if (isa<CallExpr>(S.getStmt()))
+ if (CallOrObjCMessage::canBeInlined(S.getStmt()))
return true;
// Is this an expression that is consumed by another expression? If so,