summaryrefslogtreecommitdiff
path: root/src/debug/ee/frameinfo.cpp
diff options
context:
space:
mode:
authorRama Krishnan Raghupathy <ramarag@microsoft.com>2016-07-18 19:40:05 -0700
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2016-07-25 18:42:30 -0700
commit00e3695c1b51248f58f6b7e1f24f83a791a3b79e (patch)
tree1af2da04bf3816d3a6172b52a84201387a5e2673 /src/debug/ee/frameinfo.cpp
parentc358f77a1ddcf31475450c40af64ad115259e622 (diff)
downloadcoreclr-00e3695c1b51248f58f6b7e1f24f83a791a3b79e.tar.gz
coreclr-00e3695c1b51248f58f6b7e1f24f83a791a3b79e.tar.bz2
coreclr-00e3695c1b51248f58f6b7e1f24f83a791a3b79e.zip
Arm64: Debugger
Instruction emulation for Break Points Debugger::FuncEvalSetup NativeWalker ExceptionHijack Exception intercept Managed Return Value
Diffstat (limited to 'src/debug/ee/frameinfo.cpp')
-rw-r--r--src/debug/ee/frameinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/ee/frameinfo.cpp b/src/debug/ee/frameinfo.cpp
index 1a56a4a493..35e5bb9a09 100644
--- a/src/debug/ee/frameinfo.cpp
+++ b/src/debug/ee/frameinfo.cpp
@@ -1424,7 +1424,7 @@ StackWalkAction DebuggerWalkStackProc(CrawlFrame *pCF, void *data)
d->info.fp = GetFramePointerForDebugger(d, pCF);
-#if defined(_DEBUG) && !defined(_TARGET_ARM_)
+#if defined(_DEBUG) && !defined(_TARGET_ARM_) && !defined(_TARGET_ARM64_)
// Make sure the stackwalk is making progress.
// On ARM this is invalid as the stack pointer does necessarily have to move when unwinding a frame.
_ASSERTE(IsCloserToLeaf(d->previousFP, d->info.fp));