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:
authorSergey Ignatov <sergign60@mail.ru>2017-01-24 12:11:59 +0300
committerSergey Ignatov <sergign60@mail.ru>2017-02-06 15:29:42 +0300
commite6ff5433da6027767eb87d7e0891bacddd87645a (patch)
tree2497a268673c8350c317015dde74f0647dd54192 /src/Native/Runtime/PalRedhawkCommon.h
parenta086b1caa4f84d606ea355ef6dfdfd548f1bdb8f (diff)
Fixes for compiling corert for arm architecture
Diffstat (limited to 'src/Native/Runtime/PalRedhawkCommon.h')
-rw-r--r--src/Native/Runtime/PalRedhawkCommon.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Native/Runtime/PalRedhawkCommon.h b/src/Native/Runtime/PalRedhawkCommon.h
index de0406a2a..36f28e856 100644
--- a/src/Native/Runtime/PalRedhawkCommon.h
+++ b/src/Native/Runtime/PalRedhawkCommon.h
@@ -62,6 +62,7 @@ struct PAL_LIMITED_CONTEXT
UIntNative GetSp() const { return SP; }
UIntNative GetFp() const { return R7; }
UIntNative GetLr() const { return LR; }
+ void SetIp(UIntNative ip) { IP = ip; }
#elif defined(_TARGET_ARM64_)
// @TODO: Add ARM64 registers
UIntNative IP;