Merge pull request #4837 from wwylele/interpreter
interpreter: silent sign warnings
This commit is contained in:
commit
8ece20007a
1 changed files with 1 additions and 1 deletions
|
@ -3586,7 +3586,7 @@ STM_INST : {
|
|||
cpu->WriteMemory32(addr, cpu->Reg[15] + 8);
|
||||
}
|
||||
} else {
|
||||
for (int i = 0; i < 15; i++) {
|
||||
for (unsigned int i = 0; i < 15; i++) {
|
||||
if (BIT(inst_cream->inst, i)) {
|
||||
if (i == Rn)
|
||||
cpu->WriteMemory32(addr, old_RN);
|
||||
|
|
Loading…
Reference in a new issue