diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-11-14 01:14:18 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-11-14 01:14:18 +0000 |
commit | 8d798c75b8aa8457ea06b22c6637d626ce1402de (patch) | |
tree | 88dca32a93463a3b7ebc132cf0e68022f601b52a /lib/Analysis/LiveVariables.cpp | |
parent | 366982aa941f949a0770d714de0de4d104f436bc (diff) |
Rename header file.
Update include files.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59284 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LiveVariables.cpp')
-rw-r--r-- | lib/Analysis/LiveVariables.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/LiveVariables.cpp b/lib/Analysis/LiveVariables.cpp index 03a4bc7eb1..98b1ee2820 100644 --- a/lib/Analysis/LiveVariables.cpp +++ b/lib/Analysis/LiveVariables.cpp @@ -276,11 +276,11 @@ void TransferFuncs::VisitDeclStmt(DeclStmt* DS) { namespace { struct Merge { - typedef ExprDeclBitVector_Types::ValTy ValTy; + typedef StmtDeclBitVector_Types::ValTy ValTy; void operator()(ValTy& Dst, const ValTy& Src) { Dst.OrDeclBits(Src); - Dst.AndExprBits(Src); + Dst.AndBlkExprBits(Src); } }; |