From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MSYB4-0001Gk-TU for qemu-devel@nongnu.org; Sun, 19 Jul 2009 11:19:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MSYB3-0001GG-Sf for qemu-devel@nongnu.org; Sun, 19 Jul 2009 11:19:50 -0400 Received: from [199.232.76.173] (port=55076 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MSYB3-0001GA-NQ for qemu-devel@nongnu.org; Sun, 19 Jul 2009 11:19:49 -0400 Received: from a40-prg1-8-129.static.adsl.vol.cz ([88.146.54.129]:53350 helo=FilipNavara-PC) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MSYB3-00033m-3e for qemu-devel@nongnu.org; Sun, 19 Jul 2009 11:19:49 -0400 From: Filip Navara Sender: Filip Navara MIME-Version: 1.0 Content-Type: text/plain; Message-Id: Subject: [Qemu-devel] [PATCH 07/18] Convert gen_lookup_tb not to use cpu_T. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Sun, 19 Jul 2009 15:19:52 -0000 To: qemu-devel@nongnu.org Signed-off-by: Filip Navara --- target-arm/translate.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/target-arm/translate.c b/target-arm/translate.c index 13c2212..87a6259 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -899,8 +899,7 @@ static inline void gen_movl_reg_T1(DisasContext *s, int reg) /* Force a TB lookup after an instruction that changes the CPU state. */ static inline void gen_lookup_tb(DisasContext *s) { - gen_op_movl_T0_im(s->pc); - gen_movl_reg_T0(s, 15); + tcg_gen_movi_i32(cpu_R[15], s->pc & ~1); s->is_jmp = DISAS_UPDATE; } -- 1.6.3.2.1299.gee46c