svn commit: r263177 - stable/10/contrib/binutils/gas/config

Justin Hibbits jhibbits at FreeBSD.org
Fri Mar 14 16:42:21 UTC 2014


Author: jhibbits
Date: Fri Mar 14 16:42:20 2014
New Revision: 263177
URL: http://svnweb.freebsd.org/changeset/base/263177

Log:
  MFC r261422
  
  Make gas accept any PowerPC instruction by default.  This is a local change,
  and will not be submitted upstream.
  
  Discussed with:       nwhitehorn,rdivacky

Modified:
  stable/10/contrib/binutils/gas/config/tc-ppc.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/contrib/binutils/gas/config/tc-ppc.c
==============================================================================
--- stable/10/contrib/binutils/gas/config/tc-ppc.c	Fri Mar 14 14:16:53 2014	(r263176)
+++ stable/10/contrib/binutils/gas/config/tc-ppc.c	Fri Mar 14 16:42:20 2014	(r263177)
@@ -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-stable mailing list