Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Mar 2014 16:42:21 +0000 (UTC)
From:      Justin Hibbits <jhibbits@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r263177 - stable/10/contrib/binutils/gas/config
Message-ID:  <201403141642.s2EGgLcX082140@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403141642.s2EGgLcX082140>