Skip to content

Commit 8f66b07

Browse files
committed
fix the rebase errors
1 parent 12a20fd commit 8f66b07

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/coreclr/jit/emitarm64.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11827,7 +11827,7 @@ void emitter::emitDispImm(ssize_t imm, bool addComma, bool alwaysHex /* =false *
1182711827
{
1182811828
if (isAddrOffset)
1182911829
{
11830-
printf("%08XH", imm);
11830+
printf("%llXH", imm);
1183111831
}
1183211832
else
1183311833
{
@@ -12264,7 +12264,7 @@ void emitter::emitDispAddrRI(regNumber reg, insOpts opt, ssize_t imm)
1226412264
if (!insOptsPostIndex(opt) && (imm != 0))
1226512265
{
1226612266
printf(",");
12267-
emitDispImm(imm, false);
12267+
emitDispImm(imm, false, true, true);
1226812268
}
1226912269
printf("]");
1227012270

@@ -12275,7 +12275,7 @@ void emitter::emitDispAddrRI(regNumber reg, insOpts opt, ssize_t imm)
1227512275
else if (insOptsPostIndex(opt))
1227612276
{
1227712277
printf(",");
12278-
emitDispImm(imm, false);
12278+
emitDispImm(imm, false, true, true);
1227912279
}
1228012280
}
1228112281
else // !strictArmAsm
@@ -12309,7 +12309,7 @@ void emitter::emitDispAddrRI(regNumber reg, insOpts opt, ssize_t imm)
1230912309
{
1231012310
printf("%c", operStr[1]);
1231112311
}
12312-
emitDispImm(imm, false);
12312+
emitDispImm(imm, false, true, true);
1231312313
printf("]");
1231412314
}
1231512315
}

0 commit comments

Comments
 (0)