summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author정동헌/Common Platform Lab(SR)/Principal Engineer/삼성전자 <dheon.jung@samsung.com>2020-06-26 11:15:41 +0900
committer이형주/Common Platform Lab(SR)/Staff Engineer/삼성전자 <leee.lee@samsung.com>2020-06-26 11:15:41 +0900
commit4561cc8ec108b1bfb7d6cebc891ee8c1f96e0a35 (patch)
tree8bc0e385daddfc10f7e780719f62cedcaed6bfb9
parent5cd177b448ff1c61c7899647f729e44fef78f142 (diff)
downloadcoreclr-4561cc8ec108b1bfb7d6cebc891ee8c1f96e0a35.tar.gz
coreclr-4561cc8ec108b1bfb7d6cebc891ee8c1f96e0a35.tar.bz2
coreclr-4561cc8ec108b1bfb7d6cebc891ee8c1f96e0a35.zip
Fix a FNV error on arm64 (#286)
Simple HelloWorld app can run with NI of System.Private.CoreLib.dll, HelloWorld.dll and System.Console.dll
-rw-r--r--src/vm/arm64/asmhelpers.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vm/arm64/asmhelpers.S b/src/vm/arm64/asmhelpers.S
index 28daf9ac0d..46b6b191e3 100644
--- a/src/vm/arm64/asmhelpers.S
+++ b/src/vm/arm64/asmhelpers.S
@@ -545,6 +545,8 @@ NESTED_ENTRY ExternalMethodFixupStub, _TEXT, NoHandler
add x0, sp, #__PWTB_TransitionBlock // pTransitionBlock
mov x1, x12 // pThunk
+ mov x2, #0 // sectionIndex
+ mov x3, #0 // pModule
bl C_FUNC(ExternalMethodFixupWorker)