From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14048 invoked by alias); 12 Sep 2012 16:27:13 -0000 Received: (qmail 13970 invoked by uid 22791); 12 Sep 2012 16:27:11 -0000 X-SWARE-Spam-Status: No, hits=-3.6 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 12 Sep 2012 16:26:51 +0000 From: "doko at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/54559] New: [4.7 Regression], ICE in gimplify_expr, at gimplify.c:7592 Date: Wed, 12 Sep 2012 16:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: doko 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-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 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 X-SW-Source: 2012-09/txt/msg00942.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54559 Bug #: 54559 Summary: [4.7 Regression], ICE in gimplify_expr, at gimplify.c:7592 Classification: Unclassified Product: gcc Version: 4.7.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: middle-end AssignedTo: unassigned@gcc.gnu.org ReportedBy: doko@gcc.gnu.org fails with r191092, worked with r190380 on the 4.7 branch, taken from a cython testcase, with -O[0-3]: $ gcc -c -g -O0 -I/usr/include/python2.7 pyx.c pyx.c: In function '__pyx_t_long_double_complex_from_parts': pyx.c:14:16: internal compiler error: in gimplify_expr, at gimplify.c:7592 Please submit a full bug report, with preprocessed source if appropriate. typedef struct { double real; double imag; } Py_complex; typedef struct _object { unsigned int refcnt; } PyObject; typedef long double _Complex __pyx_t_long_double_complex; static __inline__ __pyx_t_long_double_complex __pyx_t_long_double_complex_from_parts(long double x, long double y) { return x + y*(__pyx_t_long_double_complex)(__extension__ 1.0iF); } static __pyx_t_long_double_complex __Pyx_PyComplex_As___pyx_t_long_double_complex(PyObject* o) { Py_complex cval; return __pyx_t_long_double_complex_from_parts( (long double)cval.real, (long double)cval.imag); }