diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-08-06 22:22:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-08-06 22:22:32 +0000 |
commit | ce1eb34bbea1e0408f1952776d7d52ccde1bd275 (patch) | |
tree | 12701d9244aa4a918e7a7f6431552bc5473c9dfa /lib/AST/CFG.cpp | |
parent | 4958e5b3da3752a66fd515901136ad0fa0a67a31 (diff) |
Always construct the BumpPtrAllocator used by CFG as an instance variable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/CFG.cpp')
-rw-r--r-- | lib/AST/CFG.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/AST/CFG.cpp b/lib/AST/CFG.cpp index 9f87dc6adf..ffc42bb6e1 100644 --- a/lib/AST/CFG.cpp +++ b/lib/AST/CFG.cpp @@ -1177,12 +1177,6 @@ typedef llvm::FoldingSet<PersistPairTy> BlkEdgeSetTy; const std::pair<CFGBlock*,CFGBlock*>* CFG::getBlockEdgeImpl(const CFGBlock* B1, const CFGBlock* B2) { - if (!Allocator) - Allocator = new llvm::BumpPtrAllocator(); - - llvm::BumpPtrAllocator* Alloc = - static_cast<llvm::BumpPtrAllocator*>(Allocator); - if (!BlkEdgeSet) BlkEdgeSet = new BlkEdgeSetTy(); @@ -1201,13 +1195,13 @@ CFG::getBlockEdgeImpl(const CFGBlock* B1, const CFGBlock* B2) { assert (llvm::AlignOf<BPairTy>::Alignment_LessEqual_8Bytes); // Allocate the pair, forcing an 8-byte alignment. - BPairTy* pair = (BPairTy*) Alloc->Allocate(sizeof(*pair), 8); + BPairTy* pair = (BPairTy*) Alloc.Allocate(sizeof(*pair), 8); new (pair) BPairTy(const_cast<CFGBlock*>(B1), const_cast<CFGBlock*>(B2)); // Allocate the meta data to store the pair in the FoldingSet. - PersistPairTy* ppair = (PersistPairTy*) Alloc->Allocate<PersistPairTy>(); + PersistPairTy* ppair = (PersistPairTy*) Alloc.Allocate<PersistPairTy>(); new (ppair) PersistPairTy(pair); p->InsertNode(ppair, InsertPos); @@ -1225,7 +1219,6 @@ CFG::getBlockEdgeImpl(const CFGBlock* B1, const CFGBlock* B2) { CFG::~CFG() { delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap); delete reinterpret_cast<BlkEdgeSetTy*>(BlkEdgeSet); - delete reinterpret_cast<llvm::BumpPtrAllocator*> (Allocator); } //===----------------------------------------------------------------------===// |