svn commit: r261422 - head/contrib/binutils/gas/config

Justin Hibbits jhibbits at FreeBSD.org
Mon Feb 3 01:45:08 UTC 2014


Author: jhibbits
Date: Mon Feb  3 01:45:07 2014
New Revision: 261422
URL: http://svnweb.freebsd.org/changeset/base/261422

Log:
  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

Modified:
  head/contrib/binutils/gas/config/tc-ppc.c

Modified: head/contrib/binutils/gas/config/tc-ppc.c
==============================================================================
--- head/contrib/binutils/gas/config/tc-ppc.c	Mon Feb  3 01:22:50 2014	(r261421)
+++ head/contrib/binutils/gas/config/tc-ppc.c	Mon Feb  3 01:45:07 2014	(r261422)
@@ -681,7 +681,7 @@ ppc_parse_name (const char *name, expres
 
 /* 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;


More information about the svn-src-head mailing list