From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:42231) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URoMC-0004e0-Ib for qemu-devel@nongnu.org; Mon, 15 Apr 2013 14:42:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1URoM9-0002CX-MY for qemu-devel@nongnu.org; Mon, 15 Apr 2013 14:42:24 -0400 Received: from mail-qe0-f52.google.com ([209.85.128.52]:38028) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1URoM9-0002CG-IV for qemu-devel@nongnu.org; Mon, 15 Apr 2013 14:42:21 -0400 Received: by mail-qe0-f52.google.com with SMTP id jy17so2850015qeb.25 for ; Mon, 15 Apr 2013 11:42:21 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Mon, 15 Apr 2013 20:40:40 +0200 Message-Id: <1366051272-12979-2-git-send-email-rth@twiddle.net> In-Reply-To: <1366051272-12979-1-git-send-email-rth@twiddle.net> References: <1366051272-12979-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v5 01/33] disas: Disassemble all ppc insns for the host List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: av1474@comtv.ru, aurelien@aurel32.net Reviewed-by: Aurelien Jarno Signed-off-by: Richard Henderson --- disas.c | 1 + 1 file changed, 1 insertion(+) diff --git a/disas.c b/disas.c index 74d3ba0..67103e0 100644 --- a/disas.c +++ b/disas.c @@ -325,6 +325,7 @@ void disas(FILE *out, void *code, unsigned long size) s.info.mach = bfd_mach_x86_64; print_insn = print_insn_i386; #elif defined(_ARCH_PPC) + s.info.disassembler_options = (char *)"any"; print_insn = print_insn_ppc; #elif defined(__alpha__) print_insn = print_insn_alpha; -- 1.8.1.4