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
This commit is contained in:
Chandler Carruth 2011-10-23 20:10:30 +00:00
parent 7102b617bf
commit 4f78053695

View File

@ -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;
}