From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13525 invoked by alias); 20 Jan 2015 10:30:39 -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 13396 invoked by uid 48); 20 Jan 2015 10:30:29 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug lto/64684] [5 Regression] wrong code by LTO on x86_64-linux-gnu Date: Tue, 20 Jan 2015 10:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: lto X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: lto, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on everconfirmed 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-01/txt/msg02007.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64684 Richard Biener changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2015-01-20 Ever confirmed|0 |1 --- Comment #2 from Richard Biener --- Setting value number of .MEM_7 to .MEM_7 (changed) Value numbering .MEM_8 stmt = fn2 (); Setting value number of .MEM_8 to .MEM_8 (changed) Value numbering _4 stmt = _4 = a; Setting value number of _4 to -1 (changed) Value numbering _5 stmt = _5 = _4 & 1; Match-and-simplified _4 & 1 to 1 RHS _4 & 1 simplified to 1 has constants 1 Setting value number of _5 to 1 (changed) so fn2 () is said to not clobber 'a'. Must be IPA references fault: all module statics: a Function name:fn2/3: static not read: all module statics static not written: all module statics Function name:fn1/0: static not read: all module statics static not written: all module statics that's wrong for both fn1 and fn2. WPA does Promotable global:a (uid=3959) Function name:fn2/3: locals read: locals written: Function name:fn1/0: locals read: locals written: And compile-time doesn't have .static-var dumps at all?! Ah, WPA stage is supposed to generate summaries? But doesn't input nodes?