http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40635 --- Comment #5 from Manuel López-Ibáñez --- (In reply to philipp from comment #4) > I have this or a very similar problem with debian amd64 4:4.8.2-1: > > main.c: In function ‘main’: > main.c:1231:23: error: ‘rv’ may be used uninitialized in this function > [-Werror=maybe-uninitialized] > return (rv_main >= 0 && rv_main < 0x70) ? rv_main : 1; Can you attach a small, preprocessed testcase? See http://gcc.gnu.org/bugs/minimize.html >From gcc-bugs-return-438088-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Dec 19 10:39:41 2013 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 17978 invoked by alias); 19 Dec 2013 10:39:40 -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 Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 17962 invoked by uid 48); 19 Dec 2013 10:39:37 -0000 From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/59557] New: [4.8/4.9 Regression] Date: Thu, 19 Dec 2013 10:39:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 4.8.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: 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: 2013-12/txt/msg01743.txt.bz2 Content-length: 1041 http://gcc.gnu.org/bugzilla/show_bug.cgi?idY557 Bug ID: 59557 Summary: [4.8/4.9 Regression] Product: gcc Version: 4.8.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: rguenth at gcc dot gnu.org Created attachment 31479 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id1479&actioníit testcase A libstdc++ change between r202388 and the 4.8.2 release broke Eigen. Preprocessing the attached testcase with 4.8.2 and then compiling with -O0 gives > ./a.out Brute force distance = 0.00428018, calls = 10000 Segmentation fault while preprocessing with 4.8.1 gets the correct > ./a.out Brute force distance = 0.00428018, calls = 10000 BVH distance = 0.00428018, calls = 756