Skip to content

Commit 4f56fef

Browse files
committed
Repair merge damage
1 parent e921df7 commit 4f56fef

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/coreclr/vm/interpexec.cpp

+1-9
Original file line numberDiff line numberDiff line change
@@ -1128,14 +1128,6 @@ void InterpExecMethod(InterpreterFrame *pInterpreterFrame, InterpMethodContextFr
11281128

11291129
goto CALL_INTERP_SLOT;
11301130
}
1131-
case INTOP_GC_COLLECT:
1132-
{
1133-
// HACK: blocking gc of all generations to enable early stackwalk testing
1134-
// Interpreter-TODO: Remove this
1135-
pInterpreterFrame->SetTopInterpMethodContextFrame(pFrame);
1136-
GCX_COOP();
1137-
GCHeapUtilities::GetGCHeap()->GarbageCollect(-1, false, collection_blocking | collection_aggressive);
1138-
}
11391131
case INTOP_NEWOBJ_VT:
11401132
{
11411133
returnOffset = ip[1];
@@ -1187,7 +1179,7 @@ void InterpExecMethod(InterpreterFrame *pInterpreterFrame, InterpMethodContextFr
11871179
{
11881180
pInterpreterFrame->SetTopInterpMethodContextFrame(pFrame);
11891181
GCX_COOP();
1190-
GCHeapUtilities::GetGCHeap()->GarbageCollect(-1, false, 0x00000002);
1182+
GCHeapUtilities::GetGCHeap()->GarbageCollect(-1, false, collection_blocking | collection_aggressive);
11911183
}
11921184
ip++;
11931185
break;

0 commit comments

Comments
 (0)