summaryrefslogtreecommitdiff
path: root/src/unwinder
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-08-03 16:22:44 -0700
committerJan Kotas <jkotas@microsoft.com>2015-08-03 16:22:44 -0700
commitd44323e3e187867af0bf26c06b71d6f8398ee791 (patch)
treed43502f8c9bbd927535c0b46a890a12742f4aeae /src/unwinder
parent43965d23655f9511b1389a4fb380fd2bf68863b4 (diff)
downloadcoreclr-d44323e3e187867af0bf26c06b71d6f8398ee791.tar.gz
coreclr-d44323e3e187867af0bf26c06b71d6f8398ee791.tar.bz2
coreclr-d44323e3e187867af0bf26c06b71d6f8398ee791.zip
Fix build break on Windows ARM
[tfs-changeset: 1509827]
Diffstat (limited to 'src/unwinder')
-rw-r--r--src/unwinder/arm/unwinder_arm.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/unwinder/arm/unwinder_arm.cpp b/src/unwinder/arm/unwinder_arm.cpp
index 8cf93f7a4e..f257e1cfb2 100644
--- a/src/unwinder/arm/unwinder_arm.cpp
+++ b/src/unwinder/arm/unwinder_arm.cpp
@@ -22,7 +22,7 @@
#define UPDATE_CONTEXT_POINTERS(Params, RegisterNumber, Address) \
do { \
- PKNONVOLATILE_CONTEXT_POINTERS ContextPointers = (Params)->ContextPointers; \
+ PT_KNONVOLATILE_CONTEXT_POINTERS ContextPointers = (Params)->ContextPointers; \
if (ARGUMENT_PRESENT(ContextPointers)) { \
if (RegisterNumber >= 4 && RegisterNumber <= 11) { \
(&ContextPointers->R4)[RegisterNumber - 4] = (PULONG)Address; \
@@ -34,7 +34,7 @@ do {
#define UPDATE_FP_CONTEXT_POINTERS(Params, RegisterNumber, Address) \
do { \
- PKNONVOLATILE_CONTEXT_POINTERS ContextPointers = (Params)->ContextPointers; \
+ PT_KNONVOLATILE_CONTEXT_POINTERS ContextPointers = (Params)->ContextPointers; \
if (ARGUMENT_PRESENT(ContextPointers) && \
(RegisterNumber >= 8) && \
(RegisterNumber <= 15)) { \
@@ -55,7 +55,7 @@ do {
typedef struct _ARM_UNWIND_PARAMS
{
- PKNONVOLATILE_CONTEXT_POINTERS ContextPointers;
+ PT_KNONVOLATILE_CONTEXT_POINTERS ContextPointers;
} ARM_UNWIND_PARAMS, *PARM_UNWIND_PARAMS;
//
@@ -1502,7 +1502,7 @@ PEXCEPTION_ROUTINE RtlVirtualUnwind(
__in OUT PCONTEXT ContextRecord,
__out PVOID *HandlerData,
__out PULONG EstablisherFrame,
- __inout_opt PKNONVOLATILE_CONTEXT_POINTERS ContextPointers
+ __inout_opt PT_KNONVOLATILE_CONTEXT_POINTERS ContextPointers
)
{
PEXCEPTION_ROUTINE handlerRoutine;