From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 73632 invoked by alias); 30 Sep 2015 06:06:35 -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 73503 invoked by uid 89); 30 Sep 2015 06:06:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-vk0-f51.google.com Received: from mail-vk0-f51.google.com (HELO mail-vk0-f51.google.com) (209.85.213.51) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 30 Sep 2015 06:06:33 +0000 Received: by vkao3 with SMTP id o3so19070814vka.2 for ; Tue, 29 Sep 2015 23:06:31 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.31.181.205 with SMTP id e196mr1759790vkf.128.1443593191698; Tue, 29 Sep 2015 23:06:31 -0700 (PDT) Received: by 10.103.40.68 with HTTP; Tue, 29 Sep 2015 23:06:31 -0700 (PDT) Date: Wed, 30 Sep 2015 07:48:00 -0000 Message-ID: Subject: Re: [PATCH, PR target/67761] Fix i686-*-* bootstrap comparison failure From: Uros Bizjak To: "gcc-patches@gcc.gnu.org" Cc: =?UTF-8?B?0JjQu9GM0Y8g0K3QvdC60L7QstC40Yc=?= Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-09/txt/msg02298.txt.bz2 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. > 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, Uros.