summaryrefslogtreecommitdiff
path: root/src/debug/daccess/daccess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug/daccess/daccess.cpp')
-rw-r--r--src/debug/daccess/daccess.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/debug/daccess/daccess.cpp b/src/debug/daccess/daccess.cpp
index e7bef87c0c..685f23f62e 100644
--- a/src/debug/daccess/daccess.cpp
+++ b/src/debug/daccess/daccess.cpp
@@ -5844,7 +5844,9 @@ ClrDataAccess::RawGetMethodName(
#endif
if (pStubManager == PrecodeStubManager::g_pManager)
{
+#ifdef FEATURE_PREJIT
PrecodeStub:
+#endif
PCODE alignedAddress = AlignDown(TO_TADDR(address), PRECODE_ALIGNMENT);
#ifdef _TARGET_ARM_
@@ -5892,7 +5894,9 @@ ClrDataAccess::RawGetMethodName(
else
if (pStubManager == JumpStubStubManager::g_pManager)
{
+#ifdef FEATURE_PREJIT
JumpStub:
+#endif
PCODE pTarget = decodeBackToBackJump(TO_TADDR(address));
HRESULT hr = GetRuntimeNameByAddress(pTarget, flags, bufLen, symbolLen, symbolBuf, NULL);