Skip to content

Commit

Permalink
Merge pull request #13 from DeepakRajendrakumaran/Anthony_Eq
Browse files Browse the repository at this point in the history
Fixing k reg display on x86.
  • Loading branch information
anthonycanino authored Apr 6, 2023
2 parents 4caa9d0 + 54f27a1 commit 3d4dc45
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 3d4dc45

Please sign in to comment.