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

Commit 821be4b

Browse files
authored
Fix Windows ARM release build break (#15958)
1 parent b193c9e commit 821be4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jit/morph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4967,7 +4967,7 @@ GenTreePtr Compiler::fgMorphMultiregStructArg(GenTreePtr arg, fgArgTabEntryPtr f
49674967
if (lcl != nullptr)
49684968
{
49694969
// Its fields will need to accessed by address.
4970-
lvaSetVarDoNotEnregister(lcl->gtLclNum, DNER_IsStructArg);
4970+
lvaSetVarDoNotEnregister(lcl->gtLclNum DEBUG_ARG(DNER_IsStructArg));
49714971
}
49724972

49734973
return arg;

0 commit comments

Comments
 (0)