Skip to content

Commit a459a25

Browse files
committed
Formatting.
1 parent 809f921 commit a459a25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/coreclr/jit/emitxarch.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4451,7 +4451,8 @@ inline unsigned emitter::insEncodeRegSIB(const instrDesc* id, regNumber reg, cod
44514451
}
44524452
else if (hasEvexPrefix(*code))
44534453
{
4454-
// Note that APX-EVEX use EVEX.X4 as the MSB of the INDEX register to address GPRs, and the original EVEX.V4 is used for VSIB addressing.
4454+
// Note that APX-EVEX use EVEX.X4 as the MSB of the INDEX register to address GPRs, and the original
4455+
// EVEX.V4 is used for VSIB addressing.
44554456
*code &= 0xFFFFFBFFFFFFFFFFULL; // EVEX.X4
44564457
}
44574458
else
@@ -15399,7 +15400,7 @@ BYTE* emitter::emitOutputSV(BYTE* dst, instrDesc* id, code_t code, CnsVal* addc)
1539915400
{
1540015401
code |= EXTENDED_EVEX_PP_BITS;
1540115402
}
15402-
#endif // TARGET_AMD64
15403+
#endif // TARGET_AMD64
1540315404
}
1540415405
FALLTHROUGH;
1540515406

@@ -17026,15 +17027,14 @@ BYTE* emitter::emitOutputRI(BYTE* dst, instrDesc* id)
1702617027
code = insCodeACC(ins);
1702717028
assert(code < 0x100);
1702817029

17029-
1703017030
// This is INS_mov and will not take VEX prefix
1703117031
assert(!TakesVexPrefix(ins));
17032-
17032+
1703317033
code = AddX86PrefixIfNeededAndNotPresent(id, code, size);
1703417034
code |= 0x08; // Set the 'w' bit
1703517035
unsigned regcode = insEncodeReg012(id, reg, size, &code);
1703617036
code |= regcode;
17037-
17037+
1703817038
if (TakesRexWPrefix(id))
1703917039
{
1704017040
code = AddRexWPrefix(id, code);

0 commit comments

Comments
 (0)