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:
authorJan Kotas <jkotas@microsoft.com>2016-01-12 23:47:18 +0300
committerJan Kotas <jkotas@microsoft.com>2016-01-13 02:34:48 +0300
commit1ea2ab46fd18a66dd33dccda27dd7b4ad1c37f55 (patch)
tree8d2c25ffd2059f5f9db5055e43dd3ba4d494b728 /src/ILCompiler.Compiler
parentc4232511ff688be60494042599eafa259a88b2aa (diff)
Implement StelemRef and LdelemaRef helpers
Diffstat (limited to 'src/ILCompiler.Compiler')
-rw-r--r--src/ILCompiler.Compiler/src/Compiler/JitHelper.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ILCompiler.Compiler/src/Compiler/JitHelper.cs b/src/ILCompiler.Compiler/src/Compiler/JitHelper.cs
index 19cc14483..11fea3dd6 100644
--- a/src/ILCompiler.Compiler/src/Compiler/JitHelper.cs
+++ b/src/ILCompiler.Compiler/src/Compiler/JitHelper.cs
@@ -143,10 +143,10 @@ namespace ILCompiler
break;
case JitHelperId.Stelem_Ref:
- mangledName = "__stelem_ref";
+ mangledName = "RhpStelemRef";
break;
case JitHelperId.Ldelema_Ref:
- mangledName = "__ldelema_ref";
+ mangledName = "RhpLdelemaRef";
break;
case JitHelperId.MemCpy: