diff --git a/tcg/tcg.c b/tcg/tcg.c index 5e84a7f50f..e5508507e2 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -2038,8 +2038,6 @@ void tcg_dump_info(FILE *f, s->tb_count1 ? (double)(s->tb_count1 - s->tb_count) / s->tb_count1 * 100.0 : 0); cpu_fprintf(f, "avg ops/TB %0.1f max=%d\n", s->tb_count ? (double)s->op_count / s->tb_count : 0, s->op_count_max); - cpu_fprintf(f, "old ops/total ops %0.1f%%\n", - s->op_count ? (double)s->old_op_count / s->op_count * 100.0 : 0); cpu_fprintf(f, "deleted ops/TB %0.2f\n", s->tb_count ? (double)s->del_op_count / s->tb_count : 0); diff --git a/tcg/tcg.h b/tcg/tcg.h index 03115e25b6..622c0c52d5 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -272,7 +272,6 @@ struct TCGContext { int op_count_max; /* max insn per TB */ int64_t temp_count; int temp_count_max; - int64_t old_op_count; int64_t del_op_count; int64_t code_in_len; int64_t code_out_len;