From owner-svn-src-all@FreeBSD.ORG Fri Mar 14 16:42:21 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46B5DC8C; Fri, 14 Mar 2014 16:42:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 326E7145; Fri, 14 Mar 2014 16:42:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2EGgLit082141; Fri, 14 Mar 2014 16:42:21 GMT (envelope-from jhibbits@svn.freebsd.org) Received: (from jhibbits@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2EGgLcX082140; Fri, 14 Mar 2014 16:42:21 GMT (envelope-from jhibbits@svn.freebsd.org) Message-Id: <201403141642.s2EGgLcX082140@svn.freebsd.org> From: Justin Hibbits Date: Fri, 14 Mar 2014 16:42:21 +0000 (UTC) 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 X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Mar 2014 16:42:21 -0000 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;