From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21029 invoked by alias); 26 Feb 2014 19:28:01 -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 21008 invoked by uid 48); 26 Feb 2014 19:27:57 -0000 From: "john at johnmaddock dot co.uk" To: gcc-bugs@gcc.gnu.org Subject: [Bug libquadmath/60349] New: Any call to expq (or libquadmath function that might possibly call expq) segfaults in mingw-gcc. Date: Wed, 26 Feb 2014 19:28:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libquadmath X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: blocker X-Bugzilla-Who: john at johnmaddock dot co.uk 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 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: 2014-02/txt/msg02635.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60349 Bug ID: 60349 Summary: Any call to expq (or libquadmath function that might possibly call expq) segfaults in mingw-gcc. Product: gcc Version: 4.8.1 Status: UNCONFIRMED Severity: blocker Priority: P3 Component: libquadmath Assignee: unassigned at gcc dot gnu.org Reporter: john at johnmaddock dot co.uk This effects gcc-4.8.1 and 4.8.2 (at least), on both mingw32 and mingw64, the following program segfaults: #include int main() { __float128 a = expq(2.0Q); return 0; } Mingw gcc-4.7.x and Linux are obviously both fine.