From patchwork Thu Sep 18 16:50:40 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Weigand X-Patchwork-Id: 390863 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id A38DE14019D for ; Fri, 19 Sep 2014 02:50:54 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:subject:to:date:from:cc:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=SUjeK2b4UFqn3/w0 CBuK5kt9qRnwCU5lHdTZTdX6B57ZulaGGmEj/4r4ku4xRLERuj4/n1JNVz+mJiw0 SmSdpA3sVS3AMW0O51g7eAdQWivMNBY5KeFTPtt7wBnqaycWkgnVq2E2w+nmuvB/ Eb7vy9nF81FmpBNlgypjY3OTXaI= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:subject:to:date:from:cc:mime-version:content-type :content-transfer-encoding; s=default; bh=VKUpVjvDNRTjtVJtg9c5Yy ZNHGc=; b=RH6Cqqosy08pCIONKSwwn/g2I97vPk6Tiu781cy1Iyl/3aRdHQ/E/F kBPSxPQCVDuJdk1EYAFBzW5rbqE1xeL69SabkTqVs7P2XEL5W43VyXZ3PtorlKRW Bur6YBKVswNuzooyVs3KJhdZU06JOof9p6enx6QP5p3V1An9AbZuY= Received: (qmail 2547 invoked by alias); 18 Sep 2014 16:50:48 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 2536 invoked by uid 89); 18 Sep 2014 16:50:47 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, MSGID_FROM_MTA_HEADER, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: e06smtp14.uk.ibm.com Received: from e06smtp14.uk.ibm.com (HELO e06smtp14.uk.ibm.com) (195.75.94.110) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 18 Sep 2014 16:50:46 +0000 Received: from /spool/local by e06smtp14.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 18 Sep 2014 17:50:43 +0100 Received: from d06dlp01.portsmouth.uk.ibm.com (9.149.20.13) by e06smtp14.uk.ibm.com (192.168.101.144) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 18 Sep 2014 17:50:42 +0100 Received: from b06cxnps4075.portsmouth.uk.ibm.com (d06relay12.portsmouth.uk.ibm.com [9.149.109.197]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id 9AF3917D8045 for ; Thu, 18 Sep 2014 17:52:46 +0100 (BST) Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by b06cxnps4075.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id s8IGofwd44564676 for ; Thu, 18 Sep 2014 16:50:41 GMT Received: from d06av02.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s8IGofpj028818 for ; Thu, 18 Sep 2014 10:50:41 -0600 Received: from tuxmaker.boeblingen.de.ibm.com (tuxmaker.boeblingen.de.ibm.com [9.152.85.9]) by d06av02.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with SMTP id s8IGoe3I028797; Thu, 18 Sep 2014 10:50:40 -0600 Message-Id: <201409181650.s8IGoe3I028797@d06av02.portsmouth.uk.ibm.com> Received: by tuxmaker.boeblingen.de.ibm.com (sSMTP sendmail emulation); Thu, 18 Sep 2014 18:50:40 +0200 Subject: [PATCH, rs6000] Rename GCC version in warning messages To: gcc-patches@gcc.gnu.org Date: Thu, 18 Sep 2014 18:50:40 +0200 (CEST) From: "Ulrich Weigand" Cc: dje.gcc@gmail.com MIME-Version: 1.0 X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14091816-1948-0000-0000-0000012C42C5 Hello, the ABI warning messages I introduced in recent patches refer to a GCC version "4.10". As GCC has since adopted a new version naming scheme, this patch updates those messages to refer to "GCC 5" instead. Tested on powerpc64le-linux. OK for mainline? Bye, Ulrich ChangeLog: * config/rs6000/rs6000.c (rs6000_special_adjust_field_align_p): Update GCC version name to GCC 5. (rs6000_function_arg_boundary): Likewise. (rs6000_function_arg): Likewise. Index: gcc/config/rs6000/rs6000.c =================================================================== --- gcc/config/rs6000/rs6000.c (revision 215355) +++ gcc/config/rs6000/rs6000.c (working copy) @@ -5939,7 +5939,7 @@ warned = true; inform (input_location, "the layout of aggregates containing vectors with" - " %d-byte alignment has changed in GCC 4.10", + " %d-byte alignment has changed in GCC 5", computed / BITS_PER_UNIT); } } @@ -9307,7 +9307,7 @@ warned = true; inform (input_location, "the ABI of passing aggregates with %d-byte alignment" - " has changed in GCC 4.10", + " has changed in GCC 5", (int) TYPE_ALIGN (type) / BITS_PER_UNIT); } } @@ -10428,7 +10428,7 @@ warned = true; inform (input_location, "the ABI of passing homogeneous float aggregates" - " has changed in GCC 4.10"); + " has changed in GCC 5"); } }