From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 103800 invoked by alias); 30 Sep 2015 13:11:01 -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 103768 invoked by uid 89); 30 Sep 2015 13:10:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f176.google.com Received: from mail-ig0-f176.google.com (HELO mail-ig0-f176.google.com) (209.85.213.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 30 Sep 2015 13:10:55 +0000 Received: by igcpb10 with SMTP id pb10so104318351igc.1 for ; Wed, 30 Sep 2015 06:10:52 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.50.67.179 with SMTP id o19mr27075951igt.63.1443618652652; Wed, 30 Sep 2015 06:10:52 -0700 (PDT) Received: by 10.36.73.14 with HTTP; Wed, 30 Sep 2015 06:10:52 -0700 (PDT) In-Reply-To: References: Date: Wed, 30 Sep 2015 13:33:00 -0000 Message-ID: Subject: Re: [PATCH, PR target/67761] Fix i686-*-* bootstrap comparison failure From: Ilya Enkovich To: Uros Bizjak Cc: "gcc-patches@gcc.gnu.org" Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg02345.txt.bz2 2015-09-30 9:06 GMT+03:00 Uros Bizjak : > Hello! > >> My recenttly introduced STV pass doesn't skip debug instructions and it causes transformation >> (mistly cost computation) depending on debug info. It causes bootstrap comparison failure. This >> patch fixes. Bootstrapped for i686-linux. Testing for x86_64-unknown-linux-gnu{,m32} is in >> progress. OK for trunk if pass? > > IMO, it would be also beneficial to bootstrap with slm default > architecture, so new code paths get some coverage via bootstrap. I bootstrapped with --with-cpu=slm also. > >> gcc/ >> >> 2015-09-29 Ilya Enkovich >> >> * config/i386/i386.c (scalar_chain::analyze_register_chain): Ignore >> debug insns. >> (scalar_chain::convert_reg): Likewise. >> >> gcc/testsuite/ >> >> 2015-09-29 Ilya Enkovich >> >> * gcc.target/i386/pr67761.c: New test. > > OK. Thanks! Ilya > > Thanks, > Uros.