Skip to content

Commit 92b67de

Browse files
committed
Add the missing SetIsLclVar()
1 parent 7511d46 commit 92b67de

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/coreclr/jit/emitarm64.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6570,6 +6570,7 @@ void emitter::emitIns_SS_R_R_R_I(instruction ins,
65706570
{
65716571
id = emitNewInstrLclVarPair(attr, imm);
65726572
id->idAddr()->iiaLclVar.initLclVarAddr(varx1, offs);
6573+
id->idSetIsLclVar();
65736574

65746575
if (id->idSmallCns())
65756576
{
@@ -6586,10 +6587,12 @@ void emitter::emitIns_SS_R_R_R_I(instruction ins,
65866587
if (validVar1)
65876588
{
65886589
id->idAddr()->iiaLclVar.initLclVarAddr(varx1, offs);
6590+
id->idSetIsLclVar();
65896591
}
65906592
if (validVar2)
65916593
{
65926594
id->idAddr()->iiaLclVar.initLclVarAddr(varx2, offs);
6595+
id->idSetIsLclVar();
65936596
}
65946597
}
65956598

0 commit comments

Comments
 (0)