Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions src/coreclr/jit/compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6614,24 +6614,6 @@ void Compiler::compCompileFinish()
}
#endif // TRACK_ENREG_STATS

// Only call _DbgBreakCheck when we are jitting, not when we are generating AOT code.
// For AOT the int3 or breakpoint instruction will be right at the
// start of the AOT method and we will stop when we execute it.
//
if (!IsAot())
{
if (compJitHaltMethod())
{
#if !defined(HOST_UNIX)
// TODO-UNIX: re-enable this when we have an OS that supports a pop-up dialog

// Don't do an assert, but just put up the dialog box so we get just-in-time debugger
// launching. When you hit 'retry' it will continue and naturally stop at the INT 3
// that the JIT put in the code
_DbgBreakCheck(__FILE__, __LINE__, "JitHalt");
#endif
}
}
#else // DEBUG
if (JitConfig.JitReportMetrics())
{
Expand Down
Loading