From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27302 invoked by alias); 14 Oct 2010 23:20:33 -0000 Received: (qmail 27294 invoked by uid 22791); 14 Oct 2010 23:20:32 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,TW_CX,TW_DC 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; Thu, 14 Oct 2010 23:20:28 +0000 From: "marti at juffo dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/46028] New: Regression from GCC 4.4: "storage size of 'test_array' isn't constant" X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: marti at juffo dot 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 Date: Thu, 14 Oct 2010 23:20:00 -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 X-SW-Source: 2010-10/txt/msg01246.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46028 Summary: Regression from GCC 4.4: "storage size of 'test_array' isn't constant" Product: gcc Version: 4.5.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c AssignedTo: unassigned@gcc.gnu.org ReportedBy: marti@juffo.org Created attachment 22046 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22046 _configtest.i When building the Python NumPy library for Python 3.x, it does the following test compilation test: typedef struct {float __x; float __y;} npy_check_sizeof_type; int main () { static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) <= 16.0)]; test_array [0] = 0 ... This code compiles fine with GCC 4.4.5 on Ubuntu, but fails with GCC 4.5.1 on Arch Linux x86_64: % gcc _configtest.c _configtest.c: In function 'main': _configtest.c:5:16: error: storage size of 'test_array' isn't constant % gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.1/lto-wrapper Target: x86_64-unknown-linux-gnu Configured with: ../configure --prefix=/usr --enable-languages=c,c++,fortran,objc,obj-c++,ada --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-gnu-unique-object --enable-lto --enable-plugin --disable-multilib --disable-libstdcxx-pch --with-system-zlib --with-ppl --with-cloog --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info Thread model: posix gcc version 4.5.1 (GCC)