From 97a5955a2a03233b795a781a224e9f7657291b94 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 6 Oct 2018 02:46:26 -0400 Subject: [PATCH] tcg: Remove leftover unused variable from TCGContext This was previously used by the i386 target, however all of the locals were moved to the DisasContext struct, leaving this unused. --- qemu/tcg/tcg.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/qemu/tcg/tcg.h b/qemu/tcg/tcg.h index cbc70309..cefe06a6 100644 --- a/qemu/tcg/tcg.h +++ b/qemu/tcg/tcg.h @@ -825,9 +825,6 @@ struct TCGContext { TCGv cpu_cc_src; TCGv cpu_cc_src2; - /* qemu/target-i386/translate.c: local register indexes (only used inside old micro ops) */ - TCGv_i64 cpu_tmp1_i64; - /* qemu/tcg/i386/tcg-target.c */ void *tb_ret_addr; int guest_base_flags;