Skip to content

Commit

Permalink
Run jit-format
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobbotsch committed Dec 27, 2024
1 parent 1ceb64c commit 84101a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/coreclr/jit/lclvars.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7356,7 +7356,8 @@ void Compiler::lvaDumpFrameLocation(unsigned lclNum, int minLength)
baseReg = EBPbased ? REG_FPBASE : REG_SPBASE;
#endif

int printed = printf("[%2s%1s0x%02X] ", getRegName(baseReg), (offset < 0 ? "-" : "+"), (offset < 0 ? -offset : offset));
int printed =
printf("[%2s%1s0x%02X] ", getRegName(baseReg), (offset < 0 ? "-" : "+"), (offset < 0 ? -offset : offset));
if ((printed >= 0) && (printed < minLength))
{
printf("%*s", minLength - printed, "");
Expand Down

0 comments on commit 84101a1

Please sign in to comment.