Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 2d2f439

Browse files
authored
Merge pull request #6035 from briansull/fix-5642
Fix issue #5642
2 parents f08a5b4 + d27ce13 commit 2d2f439

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/jit/morph.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4893,9 +4893,9 @@ void Compiler::fgFixupStructReturn(GenTreePtr callNode)
48934893

48944894
if (!callHasRetBuffArg && varTypeIsStruct(call))
48954895
{
4896-
#ifdef FEATURE_HFA
4896+
#if FEATURE_MULTIREG_RET
48974897
if (call->gtCall.IsVarargs() || !IsHfa(call))
4898-
#endif
4898+
#endif // FEATURE_MULTIREG_RET
48994899
{
49004900
// Now that we are past the importer, re-type this node so the register predictor does
49014901
// the right thing

tests/arm64/Tests.lst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64215,7 +64215,7 @@ RelativePath=JIT\SIMD\VectorReturn_ro\VectorReturn_ro.cmd
6421564215
WorkingDir=JIT\SIMD\VectorReturn_ro
6421664216
Expected=0
6421764217
MaxAllowedDurationSeconds=600
64218-
Categories=Pri0;EXPECTED_PASS;R2R_FAIL;ISSUE_5642
64218+
Categories=Pri0;EXPECTED_PASS;ISSUE_5642
6421964219
HostStyle=0
6422064220
[VectorSet_r.cmd_9294]
6422164221
RelativePath=JIT\SIMD\VectorSet_r\VectorSet_r.cmd

0 commit comments

Comments
 (0)