| 555 | } |
| 556 | |
| 557 | void CeFunction::UnbindBreakpoints() |
| 558 | { |
| 559 | for (auto kv : mBreakpoints) |
| 560 | mCode[kv.mKey] = kv.mValue.mPrevOpCode; |
| 561 | mBreakpoints.Clear(); |
| 562 | } |
| 563 | |
| 564 | CeEmitEntry* CeFunction::FindEmitEntry(int instIdx, int* entryIdx) |
| 565 | { |
no test coverage detected