From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30663 invoked by alias); 27 Feb 2015 16:44:49 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 28117 invoked by uid 55); 27 Feb 2015 16:44:46 -0000 From: "hubicka at ucw dot cz" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/65237] [5 Regression] r221040 caused many regressions Date: Fri, 27 Feb 2015 17:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hubicka at ucw dot cz X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-02/txt/msg03101.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65237 --- Comment #8 from Jan Hubicka --- > > FAIL: gcc.dg/ipa/ipa-cp-1.c scan-ipa-dump cp "Alignment 2" > FAIL: gcc.dg/ipa/ipa-cp-2.c scan-ipa-dump cp "Alignment 8, misalignment 4" Sorry, these was unintentinal commits, I will revert them soon. > FAIL: gcc.dg/noreturn-7.c (test for warnings, line 30) Here we do merging before outputting a warning (testcase expects two warnings). I suppose there is not much to do than -fno-ipa-cp. Once user adds one noreturn, he will get warning for anohter, because the functions will no longer get merged. > FAIL: gcc.target/i386/stackalign/longlong-2.c -mno-stackrealign > scan-assembler-times and[lq]?[^\\n]*-16,[^\\n]*sp 2 > FAIL: gcc.target/i386/stackalign/longlong-2.c -mno-stackrealign > scan-assembler-times and[lq]?[^\\n]*-8,[^\\n]*sp 2 > FAIL: gcc.target/i386/stackalign/longlong-2.c -mstackrealign > scan-assembler-times and[lq]?[^\\n]*-16,[^\\n]*sp 2 > FAIL: gcc.target/i386/stackalign/longlong-2.c -mstackrealign > scan-assembler-times and[lq]?[^\\n]*-8,[^\\n]*sp 2 I suppose here we merge void f2 (void) { unsigned long long a __attribute__((aligned (8))); fn (&a); } and void f4 (void) { unsigned long long a __attribute__((aligned (16))); fn (&a); } I already discussed with Martin yesterday that we need to compare alignments. I think he has patch on a way Honza