From patchwork Thu Sep 20 16:32:59 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Klose X-Patchwork-Id: 185432 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]) by ozlabs.org (Postfix) with SMTP id 00E692C0079 for ; Fri, 21 Sep 2012 02:37:14 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1348763835; h=Comment: DomainKey-Signature:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=xwbvt8X Qix/72wFYx5r01JakjoI=; b=nZRqS3B2mXoQcPMiWxPYuv5k8CzL40YwvxS6XGt /A4SBhIdrXlZlmKFvX5trvNZICIJ7BLb9QyQkcZ9cqeqgKTavhb8lBfg3EN2X7tQ DUYx+Rc82T10BO5Qo335Hdha3DJIKDFGybjx8P+7W67Xn2aXUoKsfBrRbq9tsBa7 5+uQ= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:X-Envelope-From:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=JvH6nUYyGM87Yt0BdpdKQyUOXNfcpk/VZoR0aQLZFgO52Y9Ob8KvVQ6uflMd8r U3fPSt7NpS2M8kwonMfuK7A0wdCVcmN7NiWndZ3vDdobn0BQJ1sAYzh6qlRqogzh yj3sXvsL2xWJSbxHZpN0BZ4Bs9dP0auWFEABPOrQQFfk8=; Received: (qmail 13017 invoked by alias); 20 Sep 2012 16:37:06 -0000 Received: (qmail 12894 invoked by uid 22791); 20 Sep 2012 16:37:04 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from einhorn.in-berlin.de (HELO einhorn.in-berlin.de) (192.109.42.8) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 20 Sep 2012 16:36:51 +0000 X-Envelope-From: doko@ubuntu.com Received: from [192.168.42.210] (dslb-088-073-089-043.pools.arcor-ip.net [88.73.89.43]) (authenticated bits=0) by einhorn.in-berlin.de (8.13.6/8.13.6/Debian-1) with ESMTP id q8KGaj9b000906; Thu, 20 Sep 2012 18:36:45 +0200 Message-ID: <505B453B.9080405@ubuntu.com> Date: Thu, 20 Sep 2012 18:32:59 +0200 From: Matthias Klose User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120827 Thunderbird/15.0 MIME-Version: 1.0 To: GCC Patches , Richard Earnshaw Subject: [patch] [ARM] 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 Starting with 4.4, GCC informs about that the `va_list' mangling has changed. This makes builds a bit "noisy", and maybe it's time to remove this informational message in the trunk. Matthias 2012-09-20 Matthias Klose * gcc/config/arm/arm.c (arm_mangle_type): Don't warn anymore that 4.4 has changed the `va_list mangling. Index: gcc/config/arm/arm.c =================================================================== --- gcc/config/arm/arm.c (revision 191561) +++ gcc/config/arm/arm.c (working copy) @@ -25072,16 +25072,7 @@ has to be managled as if it is in the "std" namespace. */ if (TARGET_AAPCS_BASED && lang_hooks.types_compatible_p (CONST_CAST_TREE (type), va_list_type)) - { - static bool warned; - if (!warned && warn_psabi && !in_system_header) - { - warned = true; - inform (input_location, - "the mangling of % has changed in GCC 4.4"); - } - return "St9__va_list"; - } + return "St9__va_list"; /* Half-precision float. */ if (TREE_CODE (type) == REAL_TYPE && TYPE_PRECISION (type) == 16)