Skip to content

Commit b9159ab

Browse files
authored
Delete outdated workaround (#93525)
1 parent 139f45e commit b9159ab

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/coreclr/debug/di/process.cpp

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9727,12 +9727,6 @@ void CordbProcess::MarshalManagedEvent(DebuggerIPCEvent * pManagedEvent)
97279727
// The event still needs to be Marshaled before being used. (see code:CordbProcess::MarshalManagedEvent)
97289728
//
97299729
//---------------------------------------------------------------------------------------
9730-
#if defined(_MSC_VER) && defined(TARGET_ARM)
9731-
// This is a temporary workaround for an ARM specific MS C++ compiler bug (internal LKG build 18.1).
9732-
// Branch < if (ptrRemoteManagedEvent == NULL) > was always taken and the function always returned false.
9733-
// TODO: It should be removed once the bug is fixed.
9734-
#pragma optimize("", off)
9735-
#endif
97369730
bool CordbProcess::CopyManagedEventFromTarget(
97379731
const EXCEPTION_RECORD * pRecord,
97389732
DebuggerIPCEvent * pLocalManagedEvent)
@@ -9779,9 +9773,6 @@ bool CordbProcess::CopyManagedEventFromTarget(
97799773

97809774
return true;
97819775
}
9782-
#if defined(_MSC_VER) && defined(TARGET_ARM)
9783-
#pragma optimize("", on)
9784-
#endif
97859776

97869777
//---------------------------------------------------------------------------------------
97879778
// EnsureClrInstanceIdSet - Ensure we have a CLR Instance ID to debug

0 commit comments

Comments
 (0)