From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12428 invoked by alias); 26 May 2014 09:16:39 -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 12415 invoked by uid 89); 26 May 2014 09:16:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ve0-f174.google.com Received: from mail-ve0-f174.google.com (HELO mail-ve0-f174.google.com) (209.85.128.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 26 May 2014 09:16:38 +0000 Received: by mail-ve0-f174.google.com with SMTP id jw12so9029369veb.33 for ; Mon, 26 May 2014 02:16:35 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.220.159.4 with SMTP id h4mr20444778vcx.1.1401095795711; Mon, 26 May 2014 02:16:35 -0700 (PDT) Received: by 10.58.243.98 with HTTP; Mon, 26 May 2014 02:16:35 -0700 (PDT) In-Reply-To: <20140526085958.25FE1106@mailhost.lps.ens.fr> References: <20140526085958.25FE1106@mailhost.lps.ens.fr> Date: Mon, 26 May 2014 09:16:00 -0000 Message-ID: Subject: Re: [PATCH 7/7] Plug ipa-prop escape analysis into gimple_call_arg_flags From: Andrew Pinski To: Dominique Dhumieres Cc: GCC Patches , Richard Guenther , Jan Hubicka Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-05/txt/msg02148.txt.bz2 On Mon, May 26, 2014 at 1:59 AM, Dominique Dhumieres wrote: > r210901 breaks bootstrap on targets not supporting strnlen, e.g., darwin10. > > ../../_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