summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/LiveVariables.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-11-14 01:14:18 +0000
committerTed Kremenek <kremenek@apple.com>2008-11-14 01:14:18 +0000
commita9d3e6c087a4e356a39bf1620573d3b11bdcb242 (patch)
tree1aca45cc8560f4e81c0eb55e1186202232b2a06d /clang/lib/Analysis/LiveVariables.cpp
parent63f4398e0bc502addaa088f512ea3b0f6f182aac (diff)
downloadbcm5719-llvm-a9d3e6c087a4e356a39bf1620573d3b11bdcb242.tar.gz
bcm5719-llvm-a9d3e6c087a4e356a39bf1620573d3b11bdcb242.zip
Rename header file.
Update include files. llvm-svn: 59284
Diffstat (limited to 'clang/lib/Analysis/LiveVariables.cpp')
-rw-r--r--clang/lib/Analysis/LiveVariables.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/LiveVariables.cpp b/clang/lib/Analysis/LiveVariables.cpp
index 03a4bc7eb10..98b1ee28209 100644
--- a/clang/lib/Analysis/LiveVariables.cpp
+++ b/clang/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);
}
};
OpenPOWER on IntegriCloud