| 5358 | } |
| 5359 | |
| 5360 | void BfIRBuilder::SetInsertPointAtStart(BfIRBlock block) |
| 5361 | { |
| 5362 | BfIRValue retVal = WriteCmd(BfIRCmd_SetInsertPointAtStart, block); |
| 5363 | if (!mIgnoreWrites) |
| 5364 | { |
| 5365 | BF_ASSERT(!block.IsFake()); |
| 5366 | mActualInsertBlock = block; |
| 5367 | } |
| 5368 | mInsertBlock = block; |
| 5369 | NEW_CMD_INSERTED; |
| 5370 | } |
| 5371 | |
| 5372 | void BfIRBuilder::EraseFromParent(BfIRBlock block) |
| 5373 | { |
no test coverage detected