From 1d5f07dc97aec80bb273cb0dd7422575f3f8e30c Mon Sep 17 00:00:00 2001 From: Justin Hibbits Date: Mon, 3 Feb 2014 01:45:07 +0000 Subject: [PATCH] Make gas accept any PowerPC instruction by default. This is a local change, and will not be submitted upstream. Discussed with: nwhitehorn,rdivacky MFC after: 1 month --- contrib/binutils/gas/config/tc-ppc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/binutils/gas/config/tc-ppc.c b/contrib/binutils/gas/config/tc-ppc.c index a86a3bea92c6..a0e116d86695 100644 --- a/contrib/binutils/gas/config/tc-ppc.c +++ b/contrib/binutils/gas/config/tc-ppc.c @@ -681,7 +681,7 @@ ppc_parse_name (const char *name, expressionS *expr) /* The type of processor we are assembling for. This is one or more of the PPC_OPCODE flags defined in opcode/ppc.h. */ -static unsigned long ppc_cpu = 0; +static unsigned long ppc_cpu = PPC_OPCODE_ANY; /* Whether to target xcoff64/elf64. */ static unsigned int ppc_obj64 = BFD_DEFAULT_TARGET_SIZE == 64;