summaryrefslogtreecommitdiff
path: root/src/vm/arm64
diff options
context:
space:
mode:
authorDavid Wrighton <davidwr@microsoft.com>2018-05-24 14:35:47 -0700
committerGitHub <noreply@github.com>2018-05-24 14:35:47 -0700
commitafe9b1dcea839ae93dd148e176e3b702b6b15ec1 (patch)
tree36b4fa94c1175e2a1f087be43bbb6d0abd29ed31 /src/vm/arm64
parent2bedc5757cfad4a222a02e74ee11a5debd70a810 (diff)
downloadcoreclr-afe9b1dcea839ae93dd148e176e3b702b6b15ec1.tar.gz
coreclr-afe9b1dcea839ae93dd148e176e3b702b6b15ec1.tar.bz2
coreclr-afe9b1dcea839ae93dd148e176e3b702b6b15ec1.zip
[Arm64] debugging work (#17993)
* Fix missing implementation of FuncEvalFrame::UpdateRegDisplay for ARM64 - Implementation is missing. Build new one based ARM implementation * Enable just my code on arm64 * Fix logging of addresses for DispatchPatchOrSingleStep * arm64 does not leave the PC at the start of the breakpoint * Enable interop debugging * Tweaks for windows arm64 mixed mode debugging support
Diffstat (limited to 'src/vm/arm64')
-rw-r--r--src/vm/arm64/virtualcallstubcpu.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vm/arm64/virtualcallstubcpu.hpp b/src/vm/arm64/virtualcallstubcpu.hpp
index 68c9125b00..3f225186a7 100644
--- a/src/vm/arm64/virtualcallstubcpu.hpp
+++ b/src/vm/arm64/virtualcallstubcpu.hpp
@@ -412,7 +412,6 @@ VirtualCallStubManager::StubKind VirtualCallStubManager::predictStubKind(PCODE s
SUPPORTS_DAC;
#ifdef DACCESS_COMPILE
- _ASSERTE(!"ARM64:NYI");
return SK_BREAKPOINT; // Dac always uses the slower lookup
#else