From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43773) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwZO4-0003sc-If for qemu-devel@nongnu.org; Mon, 16 Jun 2014 12:04:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WwZNv-0003bj-Ix for qemu-devel@nongnu.org; Mon, 16 Jun 2014 12:04:00 -0400 From: Tom Musta Date: Mon, 16 Jun 2014 11:03:20 -0500 Message-Id: <1402934602-29002-3-git-send-email-tommusta@gmail.com> In-Reply-To: <1402934602-29002-1-git-send-email-tommusta@gmail.com> References: <1402934602-29002-1-git-send-email-tommusta@gmail.com> Subject: [Qemu-devel] [PATCH 2/4] target-ppc: Add DFP to Emulated Instructions Flag List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: tommusta@gmail.com, qemu-ppc@nongnu.org Decimal Floating Point is emulated, so add it the mask. This will fix the erroneous message: Warning: Disabling some instructions which are not emulated by TCG (0x0, 0x4) Signed-off-by: Tom Musta --- target-ppc/cpu.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 74407ee..08ae527 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -2012,7 +2012,7 @@ enum { PPC2_DIVE_ISA206 | PPC2_ATOMIC_ISA206 | \ PPC2_FP_CVT_ISA206 | PPC2_FP_TST_ISA206 | \ PPC2_BCTAR_ISA207 | PPC2_LSQ_ISA207 | \ - PPC2_ALTIVEC_207 | PPC2_ISA207S) + PPC2_ALTIVEC_207 | PPC2_ISA207S | PPC2_DFP) }; /*****************************************************************************/ -- 1.7.1