Skip to content

Commit 67965a5

Browse files
committed
Fix
1 parent 29e0a70 commit 67965a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/jit/emitloongarch64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4002,7 +4002,7 @@ void emitter::emitDisInsName(code_t code, const BYTE* addr, instrDesc* id)
40024002
int tmp;
40034003

40044004
instruction ins = INS_invalid;
4005-
for (int i = 1; i < INS_count; i++)
4005+
for (int i = 1; i < static_cast<int>(INS_count); i++)
40064006
{
40074007
if ((code & emitGetInsMask(i)) == emitInsCode((instruction)i))
40084008
{

0 commit comments

Comments
 (0)