diff --git a/core/arch/aarchxx/mangle.c b/core/arch/aarchxx/mangle.c index b92cf677ebd..f3a8b27b121 100644 --- a/core/arch/aarchxx/mangle.c +++ b/core/arch/aarchxx/mangle.c @@ -666,8 +666,7 @@ insert_push_all_registers(dcontext_t *dcontext, clean_call_info_t *cci, /* Make dstack_offs 8-byte algined, as we only accounted for 17 4-byte slots. */ PRE(ilist, instr, - XINST_CREATE_sub(dcontext, opnd_create_reg(DR_REG_SP), - OPND_CREATE_INT(XSP_SZ))); + XINST_CREATE_sub(dcontext, opnd_create_reg(DR_REG_SP), OPND_CREATE_INT(XSP_SZ))); dstack_offs += XSP_SZ; #endif ASSERT(cci->skip_save_flags || cci->num_simd_skip != 0 || cci->num_regs_skip != 0 || @@ -773,8 +772,7 @@ insert_pop_all_registers(dcontext_t *dcontext, clean_call_info_t *cci, instrlist #else PRE(ilist, instr, - XINST_CREATE_add(dcontext, opnd_create_reg(DR_REG_SP), - OPND_CREATE_INT(XSP_SZ))); + XINST_CREATE_add(dcontext, opnd_create_reg(DR_REG_SP), OPND_CREATE_INT(XSP_SZ))); /* We rely on dr_set_mcontext_priv() to set the app's stolen reg value, * and the stack swap to set the sp value: we assume the stolen reg on * the stack still has our TLS base in it.