summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author이형주/Common Platform Lab(SR)/Staff Engineer/삼성전자 <leee.lee@samsung.com>2020-12-01 16:18:08 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2020-12-01 16:18:08 +0900
commitb2ca580fb52ac30dadec4d6c859bae66af8784c0 (patch)
treeddac090c6a0bd608f9e59427619ebc19946adca5
parent0fb1f07f6deb8628d8dc6f9599512de8fc654ddf (diff)
downloadcoreclr-b2ca580fb52ac30dadec4d6c859bae66af8784c0.tar.gz
coreclr-b2ca580fb52ac30dadec4d6c859bae66af8784c0.tar.bz2
coreclr-b2ca580fb52ac30dadec4d6c859bae66af8784c0.zip
-rw-r--r--src/jit/codegenarm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/codegenarm.cpp b/src/jit/codegenarm.cpp
index 0597696206..60f7122284 100644
--- a/src/jit/codegenarm.cpp
+++ b/src/jit/codegenarm.cpp
@@ -1732,7 +1732,7 @@ void CodeGen::genProfilingLeaveCallback(unsigned helper)
else if (varTypeIsFloating(compiler->info.compRetType) ||
compiler->IsHfa(compiler->info.compMethodInfo->args.retTypeClass))
{
- r0InUse = !compiler->info.compIsVarArgs && !compiler->opts.compUseSoftFP;
+ r0InUse = compiler->info.compIsVarArgs || compiler->opts.compUseSoftFP;
}
else
{