Skip to content

Commit

Permalink
Fixing k reg display on x86.
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakRajendrakumaran committed Apr 6, 2023
1 parent 4caa9d0 commit 54f27a1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/coreclr/jit/emitxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9783,6 +9783,10 @@ const char* emitter::emitRegName(regNumber reg, emitAttr attr, bool varName)
#endif // TARGET_AMD64

#ifdef TARGET_X86
if (isMaskReg(reg))
{
return rn;
}
assert(strlen(rn) >= 3);

switch (EA_SIZE(attr))
Expand Down

0 comments on commit 54f27a1

Please sign in to comment.