Skip to content

Commit 09b99bf

Browse files
authored
JIT: Handle FIELD_LIST as a user of calls in lowering (#112904)
Fix #112890
1 parent 8017079 commit 09b99bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/coreclr/jit/lower.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5292,7 +5292,8 @@ void Lowering::LowerCallStruct(GenTreeCall* call)
52925292
break;
52935293

52945294
case GT_CALL:
5295-
// Argument lowering will deal with register file mismatches if needed.
5295+
case GT_FIELD_LIST:
5296+
// Argument/return lowering will deal with register file mismatches if needed.
52965297
assert(varTypeIsSIMD(origType));
52975298
break;
52985299

0 commit comments

Comments
 (0)