Message ID | 1317473783-30088-1-git-send-email-peter.maydell@linaro.org |
---|---|
State | Accepted |
Commit | 498562926d798abf9b2fa2533a108f73a914fd3a |
Headers | show |
Thanks, applied both. On Sat, Oct 1, 2011 at 12:56 PM, Peter Maydell <peter.maydell@linaro.org> wrote: > Remove the unused function tcg_out_addi() from the ia64 TCG backend; > this brings it into line with other backends. > > Signed-off-by: Peter Maydell <peter.maydell@linaro.org> > --- > tcg/ia64/tcg-target.c | 19 ------------------- > 1 files changed, 0 insertions(+), 19 deletions(-) > > diff --git a/tcg/ia64/tcg-target.c b/tcg/ia64/tcg-target.c > index 3803ab6..bb22b9a 100644 > --- a/tcg/ia64/tcg-target.c > +++ b/tcg/ia64/tcg-target.c > @@ -847,25 +847,6 @@ static inline void tcg_out_movi(TCGContext *s, TCGType type, > tcg_opc_x2 (TCG_REG_P0, OPC_MOVL_X2, reg, arg)); > } > > -static inline void tcg_out_addi(TCGContext *s, TCGArg reg, tcg_target_long val) > -{ > - if (val == ((int32_t)val << 10) >> 10) { > - tcg_out_bundle(s, MmI, > - tcg_opc_a5(TCG_REG_P0, OPC_ADDL_A5, > - TCG_REG_R2, val, TCG_REG_R0), > - tcg_opc_m48(TCG_REG_P0, OPC_NOP_M48, 0), > - tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, reg, > - reg, TCG_REG_R2)); > - } else { > - tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R2, val); > - tcg_out_bundle(s, mmI, > - tcg_opc_m48(TCG_REG_P0, OPC_NOP_M48, 0), > - tcg_opc_m48(TCG_REG_P0, OPC_NOP_M48, 0), > - tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, reg, > - reg, TCG_REG_R2)); > - } > -} > - > static void tcg_out_br(TCGContext *s, int label_index) > { > TCGLabel *l = &s->labels[label_index]; > -- > 1.7.4.1 > > >
diff --git a/tcg/ia64/tcg-target.c b/tcg/ia64/tcg-target.c index 3803ab6..bb22b9a 100644 --- a/tcg/ia64/tcg-target.c +++ b/tcg/ia64/tcg-target.c @@ -847,25 +847,6 @@ static inline void tcg_out_movi(TCGContext *s, TCGType type, tcg_opc_x2 (TCG_REG_P0, OPC_MOVL_X2, reg, arg)); } -static inline void tcg_out_addi(TCGContext *s, TCGArg reg, tcg_target_long val) -{ - if (val == ((int32_t)val << 10) >> 10) { - tcg_out_bundle(s, MmI, - tcg_opc_a5(TCG_REG_P0, OPC_ADDL_A5, - TCG_REG_R2, val, TCG_REG_R0), - tcg_opc_m48(TCG_REG_P0, OPC_NOP_M48, 0), - tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, reg, - reg, TCG_REG_R2)); - } else { - tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R2, val); - tcg_out_bundle(s, mmI, - tcg_opc_m48(TCG_REG_P0, OPC_NOP_M48, 0), - tcg_opc_m48(TCG_REG_P0, OPC_NOP_M48, 0), - tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, reg, - reg, TCG_REG_R2)); - } -} - static void tcg_out_br(TCGContext *s, int label_index) { TCGLabel *l = &s->labels[label_index];
Remove the unused function tcg_out_addi() from the ia64 TCG backend; this brings it into line with other backends. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> --- tcg/ia64/tcg-target.c | 19 ------------------- 1 files changed, 0 insertions(+), 19 deletions(-)