From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2693 invoked by alias); 26 May 2014 09:29:37 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 2683 invoked by uid 89); 26 May 2014 09:29:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qg0-f48.google.com Received: from mail-qg0-f48.google.com (HELO mail-qg0-f48.google.com) (209.85.192.48) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 26 May 2014 09:28:58 +0000 Received: by mail-qg0-f48.google.com with SMTP id i50so11857606qgf.35 for ; Mon, 26 May 2014 02:28:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=5ldhS8vJHnjiwYFOIcBiezlGU5euh+KUVfamMvacY9E=; b=ahGzk7IWckYjq4XOK5uUpZy20lr8SpqooCLBa45DnIU6WX+OF/WBa7FJegF89qg+zl qwO/Ort1/nXrZ56mo0jJ+kzxrAO94gdec+0POnku/AG89+3UwU8X9KIDVXUOIkqACucJ +mdyhd7S+XaMvvdtB7ZhAVSHj1P2vJDGEfpkClZmCt6dN2xyTqexbxVnmtWw0RcTA65O KRhEDUeJw194JRp6kNg3rvCqYSmM7fj537U1sESSAmZD3sQJKqPqaOKtxC1RalXs5jBC e/8yGzWr8wv9P643l2PCwAJf1j21a6/iyOTIFe8rm5qogjaty+swe2o9IjojKdldoSFx dEfQ== X-Gm-Message-State: ALoCoQmrwew4GJE47oyhylZkMaWEy6Jlh4j+mW69wEQwtnX4twMhq5en3GwvIq9nwHP+xjum5jvq MIME-Version: 1.0 X-Received: by 10.140.26.179 with SMTP id 48mr29255090qgv.51.1401096536511; Mon, 26 May 2014 02:28:56 -0700 (PDT) Received: by 10.140.93.37 with HTTP; Mon, 26 May 2014 02:28:56 -0700 (PDT) In-Reply-To: References: <20140526085958.25FE1106@mailhost.lps.ens.fr> Date: Mon, 26 May 2014 09:29:00 -0000 Message-ID: Subject: Re: [PATCH 7/7] Plug ipa-prop escape analysis into gimple_call_arg_flags From: Christophe Lyon To: Andrew Pinski Cc: Dominique Dhumieres , GCC Patches , Richard Guenther , Jan Hubicka Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2014-05/txt/msg02153.txt.bz2 On my side, I can see that r210901 breaks AArch64 compiler build: gcc/config/aarch64/aarch64.c: In function =E2=80=98void aarch64_elf_asm_named_section(const char*, unsigned int, tree_node*)=E2=80= =99: gcc/config/aarch64/aarch64.c:8136: error: =E2=80=98decl_comdat_group=E2=80= =99 was not declared in this scope Christophe. On 26 May 2014 11:16, Andrew Pinski wrote: > On Mon, May 26, 2014 at 1:59 AM, Dominique Dhumieres = wrote: >> r210901 breaks bootstrap on targets not supporting strnlen, e.g., darwin= 10. >> >> ../../_clean/gcc/lto-cgraph.c:976:68: error: 'strnlen' was not declared = in this scope > > strnlen should be declared in include/libiberty.h if there is no > declaration as libiberty support is already there. That should be a > simple fix. > > Thanks, > Andrew Pinski > >> >> libgfortran/configure defines HAVE_STRNLEN on targets supporting it. >> >> The same revision also breaks the test g++.dg/tls/diag-1.C >> >> /opt/gcc/work/gcc/testsuite/g++.dg/tls/diag-1.C:31:1: internal compiler = error: in symtab_get_node, at cgraph.h:1021 >> >> TIA, >> >> Dominique