py/emitnative: Fix bug with store of 16 and 32 values in viper ARM mode.

This commit is contained in:
Damien George 2018-08-17 01:12:05 +10:00
parent 1ad44acb15
commit a0a29724c8
1 changed files with 2 additions and 5 deletions

View File

@ -1472,10 +1472,6 @@ STATIC void emit_native_store_subscr(emit_t *emit) {
}
#endif
ASM_MOV_REG_IMM(emit->as, reg_index, index_value << 1);
#if N_ARM
asm_arm_strh_reg_reg_reg(emit->as, reg_value, reg_base, reg_index);
return;
#endif
ASM_ADD_REG_REG(emit->as, reg_index, reg_base); // add 2*index to base
reg_base = reg_index;
}
@ -1492,11 +1488,12 @@ STATIC void emit_native_store_subscr(emit_t *emit) {
break;
}
#endif
ASM_MOV_REG_IMM(emit->as, reg_index, index_value << 2);
#if N_ARM
ASM_MOV_REG_IMM(emit->as, reg_index, index_value);
asm_arm_str_reg_reg_reg(emit->as, reg_value, reg_base, reg_index);
return;
#endif
ASM_MOV_REG_IMM(emit->as, reg_index, index_value << 2);
ASM_ADD_REG_REG(emit->as, reg_index, reg_base); // add 4*index to base
reg_base = reg_index;
}