Signed-off-by: Richard Henderson <r...@twiddle.net> --- tcg/s390/tcg-target.c | 25 ++++++++++--------------- 1 files changed, 10 insertions(+), 15 deletions(-)
diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c index 97ac66d..cf70cc2 100644 --- a/tcg/s390/tcg-target.c +++ b/tcg/s390/tcg-target.c @@ -911,11 +911,6 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, } break; - case INDEX_op_jmp: - /* XXX */ - tcg_abort(); - break; - case INDEX_op_ld8u_i32: tcg_out_ldst(s, 0, RXY_LLC, args[0], args[1], args[2]); break; @@ -977,16 +972,6 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, tcg_out_st(s, TCG_TYPE_I64, args[0], args[1], args[2]); break; - case INDEX_op_mov_i32: - /* XXX */ - tcg_abort(); - break; - - case INDEX_op_movi_i32: - /* XXX */ - tcg_abort(); - break; - case INDEX_op_add_i32: if (const_args[2]) { tcg_out_insn(s, RI, AHI, args[0], args[2]); @@ -1234,6 +1219,16 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, tcg_out_qemu_st(s, args, LD_UINT64); break; + case INDEX_op_mov_i32: + case INDEX_op_mov_i64: + case INDEX_op_movi_i32: + case INDEX_op_movi_i64: + /* These are always emitted by TCG directly. */ + case INDEX_op_jmp: + /* This one is obsolete and never emitted. */ + tcg_abort(); + break; + default: fprintf(stderr,"unimplemented opc 0x%x\n",opc); tcg_abort(); -- 1.7.0.1