1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Codegen: [MBP] Add assert strings. NFC

llvm-svn: 273067
This commit is contained in:
Kyle Butt 2016-06-17 22:40:19 +00:00
parent 05ad7be597
commit f258469347

View File

@ -846,8 +846,8 @@ void MachineBlockPlacement::buildChain(
SmallVectorImpl<MachineBasicBlock *> &BlockWorkList,
SmallVectorImpl<MachineBasicBlock *> &EHPadWorkList,
const BlockFilterSet *BlockFilter) {
assert(BB);
assert(BlockToChain[BB] == &Chain);
assert(BB && "BB must not be null.\n");
assert(BlockToChain[BB] == &Chain && "BlockToChainMap mis-match.\n");
MachineFunction::iterator PrevUnplacedBlockIt = F->begin();
MachineBasicBlock *LoopHeaderBB = BB;