From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57723) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMslP-0002Ty-17 for qemu-devel@nongnu.org; Tue, 02 Apr 2013 00:24:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UMslM-0007Iv-Bg for qemu-devel@nongnu.org; Tue, 02 Apr 2013 00:24:02 -0400 Received: from mail-gh0-f180.google.com ([209.85.160.180]:47288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMslM-0007Io-85 for qemu-devel@nongnu.org; Tue, 02 Apr 2013 00:24:00 -0400 Received: by mail-gh0-f180.google.com with SMTP id f13so2716ghb.25 for ; Mon, 01 Apr 2013 21:23:59 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Mon, 1 Apr 2013 21:23:04 -0700 Message-Id: <1364876610-3933-2-git-send-email-rth@twiddle.net> In-Reply-To: <1364876610-3933-1-git-send-email-rth@twiddle.net> References: <1364876610-3933-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v3 01/27] 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, agraf@suse.de, 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