Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hez2010 committed Nov 30, 2024
1 parent 29e0a70 commit 67965a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/jit/emitloongarch64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4002,7 +4002,7 @@ void emitter::emitDisInsName(code_t code, const BYTE* addr, instrDesc* id)
int tmp;

instruction ins = INS_invalid;
for (int i = 1; i < INS_count; i++)
for (int i = 1; i < static_cast<int>(INS_count); i++)
{
if ((code & emitGetInsMask(i)) == emitInsCode((instruction)i))
{
Expand Down

0 comments on commit 67965a5

Please sign in to comment.