Skip to content

Commit

Permalink
Fix debug-only assert in IsInPlaceSingleStep (dotnet#109603)
Browse files Browse the repository at this point in the history
  • Loading branch information
tommcdon authored Nov 7, 2024
1 parent 70c574d commit c72e062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/debug/ee/controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@ class DebuggerPatchSkip : public DebuggerController
#ifdef OUT_OF_PROCESS_SETTHREADCONTEXT
#ifndef FEATURE_EMULATE_SINGLESTEP
// only in-place single steps over call intructions are supported at this time
_ASSERTE(m_instrAttrib.m_fIsCall);
_ASSERTE(!m_fInPlaceSS || m_instrAttrib.m_fIsCall);
return m_fInPlaceSS;
#else
#error only non-emulated single-steps with OUT_OF_PROCESS_SETTHREADCONTEXT enabled are supported
Expand Down

0 comments on commit c72e062

Please sign in to comment.