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-07-21 16:01:46 +0300
committerJan Kotas <jkotas@microsoft.com>2017-07-21 16:01:46 +0300
commit9c10def8aedc28d76d7c14327a3e34f6c90abbcb (patch)
tree885ccbc577ba01a395ca71e003b71d33fb2f8ee9 /src/Native/Runtime/PalRedhawkCommon.h
parent92e7b8edca747ef8af4df8b8dc4ce2573873f0ae (diff)
[armel tizen] Implemented Interlocked.S stubs (#4187)
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 882e525af..3ee11e9a2 100644
--- a/src/Native/Runtime/PalRedhawkCommon.h
+++ b/src/Native/Runtime/PalRedhawkCommon.h
@@ -63,6 +63,7 @@ struct PAL_LIMITED_CONTEXT
UIntNative GetFp() const { return R7; }
UIntNative GetLr() const { return LR; }
void SetIp(UIntNative ip) { IP = ip; }
+ void SetSp(UIntNative sp) { SP = sp; }
#elif defined(_TARGET_ARM64_)
// @TODO: Add ARM64 registers
UIntNative IP;