summaryrefslogtreecommitdiff
path: root/src/vm/stubhelpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/stubhelpers.cpp')
-rw-r--r--src/vm/stubhelpers.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/vm/stubhelpers.cpp b/src/vm/stubhelpers.cpp
index bb2af8e052..6e8ac761e0 100644
--- a/src/vm/stubhelpers.cpp
+++ b/src/vm/stubhelpers.cpp
@@ -1245,9 +1245,7 @@ FCIMPL2(void*, StubHelpers::GetDelegateTarget, DelegateObject *pThisUNSAFE, UINT
UINT_PTR target = (UINT_PTR)orefThis->GetMethodPtrAux();
// The lowest bit is used to distinguish between MD and target on 64-bit.
-#ifdef _TARGET_AMD64_
target = (target << 1) | 1;
-#endif // _TARGET_AMD64_
// On 64-bit we pass the real target to the stub-for-host through this out argument,
// see IL code gen in NDirectStubLinker::DoNDirect for details.