| 5799 | } |
| 5800 | |
| 5801 | void BfIRBuilder::SetCurrentDebugLocation(int line, int column, BfIRMDNode diScope, BfIRMDNode diInlinedAt) |
| 5802 | { |
| 5803 | BF_ASSERT(diScope); |
| 5804 | if (mDbgVerifyCodeGen && gDebugDbgLoc) |
| 5805 | { |
| 5806 | OutputDebugStrF("SetCurrentDebugLocation %d %d:%d\n", diScope.mId, line, column); |
| 5807 | } |
| 5808 | WriteCmd(BfIRCmd_SetCurrentDebugLocation, line, column, diScope, diInlinedAt); |
| 5809 | mHasDebugLoc = true; |
| 5810 | NEW_CMD_INSERTED; |
| 5811 | } |
| 5812 | |
| 5813 | void BfIRBuilder::CreateNop() |
| 5814 | { |
no outgoing calls
no test coverage detected