commit | 0d2bc354d402d7316f8f8edd0ea6a04514ad8719 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Wed Nov 12 21:12:18 2008 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Wed Nov 12 21:12:18 2008 +0000 |
tree | ebf115c26d79f0d501d3208fc918fb5e1c40d1b2 | |
parent | 16516e274f96647fee00ed69cb6cada1ca24ab20 [diff] |
Use Stmt* instead of Expr* for block-level expression. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59161 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/LiveVariables.cpp b/lib/Analysis/LiveVariables.cpp index 83a0115..9bbbf55 100644 --- a/lib/Analysis/LiveVariables.cpp +++ b/lib/Analysis/LiveVariables.cpp
@@ -157,7 +157,7 @@ void TransferFuncs::VisitTerminator(CFGBlock* B) { - const Expr* E = B->getTerminatorCondition(); + const Stmt* E = B->getTerminatorCondition(); if (!E) return;