From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28438 invoked by alias); 25 Jul 2017 04:20:11 -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 28402 invoked by uid 89); 25 Jul 2017 04:20:09 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-yw0-f174.google.com Received: from mail-yw0-f174.google.com (HELO mail-yw0-f174.google.com) (209.85.161.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 25 Jul 2017 04:20:07 +0000 Received: by mail-yw0-f174.google.com with SMTP id x125so61581311ywa.0 for ; Mon, 24 Jul 2017 21:20:07 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=xPr4oqUMxE8UgBT4EbF6q3k4/tDZmCswY9CKQGaAWXw=; b=V6JbYI7631zEvc407c1nhqQ2D14ntNf0Fmr/+1hWN+CJClvF+hb7Xel0z1NcdF3raq aL1eI1QaGfFf6hKt9lZMYncPt4yTIa4QaM9TPKp1VJshMTqa3M+K0ZIku+QHrKIG+jHc hUK+xpb9G0sMOo1Jdo6xy3KNvdsbs+loA6mlr0RvqxuZJZMLu7qSJH9+Q7L7PopGeA6E ZVN51vaDbxeEDWX8KM08cza3Hgq9j8ngRJ4jPg5N/uiCelud3AFniBUpG3HX/lNBEL13 4a0iL/mPnjH1Vfcju/K1/gGTRsjHyzs1jWMG5KW2YN8nEasJKQBb6aLRPTzEFYpVMidY jWVQ== X-Gm-Message-State: AIVw1128dCqWQiFHmG2+f8iausnOBs3h8gm8RZFyUFf+WJU9sSLRSWub phe1A1ewQt72cI8ai0eouMIVrstLxg== X-Received: by 10.37.244.9 with SMTP id q9mr15181300ybd.341.1500956405771; Mon, 24 Jul 2017 21:20:05 -0700 (PDT) MIME-Version: 1.0 Received: by 10.13.224.69 with HTTP; Mon, 24 Jul 2017 21:20:05 -0700 (PDT) In-Reply-To: References: <20170717092719.GB33905@kam.mff.cuni.cz> From: Yuri Gribov Date: Tue, 25 Jul 2017 04:20:00 -0000 Message-ID: Subject: Re: [PATCH] Fix wrong condition in ipa-visibility.c (PR ipa/81520). To: =?UTF-8?Q?Martin_Li=C5=A1ka?= Cc: Jan Hubicka , GCC Patches Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-07/txt/msg01489.txt.bz2 On Mon, Jul 24, 2017 at 1:52 PM, Martin Li=C5=A1ka wrote: > Hi. > > The patch fixed PR mentioned in subject of this email. We should not call= the transformation > on targets that do not support aliases. > > Patch can bootstrap on ppc64le-redhat-linux and survives regression tests. > Apart from that, can you Yuri please take a look at failing test-case on = ppc64le: > > FAIL: gcc.dg/pr56727-2.c scan-assembler @(PLT|plt) > > in: https://gcc.gnu.org/ml/gcc-testresults/2017-07/msg02164.html Thanks Martin, this has been reported in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D81535 (the test gets tailcall optimized). I'll be back on Thursday to fix it. -Y