From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XczaN-0000zK-1K for qemu-devel@nongnu.org; Sat, 11 Oct 2014 12:32:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XczaM-0002Nx-8g for qemu-devel@nongnu.org; Sat, 11 Oct 2014 12:32:02 -0400 Received: from mail-oi0-x22a.google.com ([2607:f8b0:4003:c06::22a]:38594) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XczaM-0002Nr-3p for qemu-devel@nongnu.org; Sat, 11 Oct 2014 12:32:02 -0400 Received: by mail-oi0-f42.google.com with SMTP id a141so9700789oig.1 for ; Sat, 11 Oct 2014 09:32:01 -0700 (PDT) MIME-Version: 1.0 Date: Sat, 11 Oct 2014 18:32:01 +0200 Message-ID: From: Laurent Desnogues Content-Type: text/plain; charset=UTF-8 Subject: [Qemu-devel] AArch64: duplicate store in do_fp_st List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-devel@nongnu.org" , Peter Maydell Hello, in target-arm/translate-a64.c:do_fp_st, it looks like there's an extraneous store: TCGv_i64 tcg_hiaddr = tcg_temp_new_i64(); tcg_gen_qemu_st_i64(tmp, tcg_addr, get_mem_index(s), MO_TEQ); tcg_gen_qemu_st64(tmp, tcg_addr, get_mem_index(s)); The second one can safely be removed. Thanks, Laurent