From: Chandler Carruth Date: Sun, 23 Oct 2011 20:10:30 +0000 (+0000) Subject: Remove a commented out line of code that snuck by my auditing. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4f780536953cdd3d92c21111301763ddd57ab720;p=oota-llvm.git Remove a commented out line of code that snuck by my auditing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142761 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineBlockPlacement.cpp b/lib/CodeGen/MachineBlockPlacement.cpp index 4f9958a6979..043a884f6d4 100644 --- a/lib/CodeGen/MachineBlockPlacement.cpp +++ b/lib/CodeGen/MachineBlockPlacement.cpp @@ -265,7 +265,6 @@ static std::string getBlockNum(MachineBasicBlock *BB) { BlockChain *MachineBlockPlacement::CreateChain(MachineBasicBlock *BB) { BlockChain *Chain = new (ChainAllocator.Allocate()) BlockChain(BlockToChain, BB); - //assert(ActiveChains.insert(Chain)); return Chain; }