summaryrefslogtreecommitdiff
path: root/src/vm/amd64/gmsamd64.cpp
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-02-18 11:36:37 +0100
committerJan Vorlicek <janvorli@microsoft.com>2015-02-18 11:36:37 +0100
commitcf3213d9f47b59dc553b04b5704acd025add1cdc (patch)
treef1bf5928adbb1da4cfb7e950e0393269882f2f9d /src/vm/amd64/gmsamd64.cpp
parentb2a085530e2dab328159ade994fd5cb42ab43a57 (diff)
downloadcoreclr-cf3213d9f47b59dc553b04b5704acd025add1cdc.tar.gz
coreclr-cf3213d9f47b59dc553b04b5704acd025add1cdc.tar.bz2
coreclr-cf3213d9f47b59dc553b04b5704acd025add1cdc.zip
Reflect CR feedback
Rename VirtualUnwind in PAL to PAL_VirtualUnwind Move .cfi annotation inside macros and update PROLOG_WITH_TRANSITION_BLOCK to use these macros. I've verified that the annotation is correct by stepping through the asm code and verifying that the stack trace is correct at every instruction.
Diffstat (limited to 'src/vm/amd64/gmsamd64.cpp')
-rw-r--r--src/vm/amd64/gmsamd64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/amd64/gmsamd64.cpp b/src/vm/amd64/gmsamd64.cpp
index 6b0fd3aa9c..39f58f1322 100644
--- a/src/vm/amd64/gmsamd64.cpp
+++ b/src/vm/amd64/gmsamd64.cpp
@@ -66,7 +66,7 @@ void LazyMachState::unwindLazyState(LazyMachState* baseState,
#ifndef FEATURE_PAL
pvControlPc = Thread::VirtualUnwindCallFrame(&ctx, &nonVolRegPtrs);
#else // !FEATURE_PAL
- VirtualUnwind(&ctx, &nonVolRegPtrs);
+ PAL_VirtualUnwind(&ctx, &nonVolRegPtrs);
pvControlPc = GetIP(&ctx);
#endif // !FEATURE_PAL