| 6242 | } |
| 6243 | |
| 6244 | BfIRMDNode BfIRBuilder::DbgCreateLexicalBlock(BfIRMDNode scope, BfIRMDNode file, int line, int col) |
| 6245 | { |
| 6246 | BfIRMDNode retVal = WriteCmd(BfIRCmd_DbgCreateLexicalBlock, scope, file, line, col); |
| 6247 | NEW_CMD_INSERTED; |
| 6248 | |
| 6249 | if (mDbgVerifyCodeGen && gDebugDbgLoc) |
| 6250 | { |
| 6251 | OutputDebugStrF("DbgCreateLexicalBlock Scope:%d File:%d = %d\n", scope.mId, file.mId, retVal.mId); |
| 6252 | } |
| 6253 | |
| 6254 | return retVal; |
| 6255 | } |
| 6256 | |
| 6257 | void BfIRBuilder::DbgCreateAnnotation(BfIRMDNode scope, const StringImpl& name, BfIRValue value) |
| 6258 | { |
no outgoing calls
no test coverage detected