Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet bot <dotnet-bot@dotnetfoundation.org>2017-12-15 03:51:07 +0300
committerAhson Khan <ahkha@microsoft.com>2017-12-15 03:51:07 +0300
commitd6c2c0869740b1a15553b222d634b1f99cf9caeb (patch)
treed1c0b302c367b09fc49ab7cf03b4d027617d025e /src/Native/Runtime/PalRedhawkCommon.h
parentbcb053d3260b03ba086258b73bb6728463296b1e (diff)
[tfs-changeset: 1683889] (#5116)
Diffstat (limited to 'src/Native/Runtime/PalRedhawkCommon.h')
-rw-r--r--src/Native/Runtime/PalRedhawkCommon.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Native/Runtime/PalRedhawkCommon.h b/src/Native/Runtime/PalRedhawkCommon.h
index 3f452135e..55971f12f 100644
--- a/src/Native/Runtime/PalRedhawkCommon.h
+++ b/src/Native/Runtime/PalRedhawkCommon.h
@@ -66,6 +66,9 @@ struct PAL_LIMITED_CONTEXT
void SetIp(UIntNative ip) { IP = ip; }
void SetSp(UIntNative sp) { SP = sp; }
#elif defined(_TARGET_ARM64_)
+ UIntNative FP;
+ UIntNative LR;
+
UIntNative X0;
UIntNative X1;
UIntNative X19;
@@ -79,8 +82,6 @@ struct PAL_LIMITED_CONTEXT
UIntNative X27;
UIntNative X28;
- UIntNative FP;
- UIntNative LR;
UIntNative SP;
UIntNative IP;