Skip to content

Commit ef25ee6

Browse files
committed
Fix disasm of arm32 double registers d10-d15
1 parent 445f131 commit ef25ee6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/jit/emitarm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6934,7 +6934,7 @@ void emitter::emitDispReg(regNumber reg, emitAttr attr, bool addComma)
69346934
else
69356935
{
69366936
assert(regIndex < 100);
6937-
printf("d%c%c", (regIndex / 10), (regIndex % 10));
6937+
printf("d%c%c", (regIndex / 10) + '0', (regIndex % 10) + '0');
69386938
}
69396939
}
69406940
else

0 commit comments

Comments
 (0)