summaryrefslogtreecommitdiff
path: root/src/jit/codegencommon.cpp
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2016-06-08 10:32:57 -0700
committerBrian Sullivan <briansul@microsoft.com>2016-06-08 10:32:57 -0700
commite3fa3a0084bc8d977c194f57542ce3eba4479d2c (patch)
tree20c8c093c6b4ad86fb5cbff80abb963b2c1263a3 /src/jit/codegencommon.cpp
parent3e3eac0e69b7c765121ed8317312005f9bcd85b7 (diff)
parentba2e4ad8a5110979bd900a8a80f4d84fae2a06f7 (diff)
downloadcoreclr-e3fa3a0084bc8d977c194f57542ce3eba4479d2c.tar.gz
coreclr-e3fa3a0084bc8d977c194f57542ce3eba4479d2c.tar.bz2
coreclr-e3fa3a0084bc8d977c194f57542ce3eba4479d2c.zip
Merge pull request #5361 from wateret/fix-hfa-armsoftfp
[ARM/Linux] Fix arm-softfp calling convention
Diffstat (limited to 'src/jit/codegencommon.cpp')
-rwxr-xr-xsrc/jit/codegencommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/codegencommon.cpp b/src/jit/codegencommon.cpp
index 1de9cc2eaf..ae590e3924 100755
--- a/src/jit/codegencommon.cpp
+++ b/src/jit/codegencommon.cpp
@@ -7439,7 +7439,7 @@ void CodeGen::genProfilingLeaveCallback(unsigned helper /*= CORIN
emitAttr attr = EA_UNKNOWN;
if (compiler->info.compRetType == TYP_VOID ||
- (!compiler->opts.compUseSoftFP && !compiler->info.compIsVarArgs && (varTypeIsFloating(compiler->info.compRetType) || compiler->IsHfa(compiler->info.compMethodInfo->args.retTypeClass))))
+ (!compiler->info.compIsVarArgs && (varTypeIsFloating(compiler->info.compRetType) || compiler->IsHfa(compiler->info.compMethodInfo->args.retTypeClass))))
{
r0Trashed = false;
}