From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19969 invoked by alias); 15 Dec 2011 20:07:22 -0000 Received: (qmail 19960 invoked by uid 22791); 15 Dec 2011 20:07:21 -0000 X-SWARE-Spam-Status: No, hits=-2.9 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; Thu, 15 Dec 2011 20:07:06 +0000 From: "hjl.tools at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/51574] New: [4.6] Internal error: Segmentation fault (program cc1plus) Date: Thu, 15 Dec 2011 20:08:00 -0000 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: hjl.tools at gmail dot com 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: 2011-12/txt/msg01723.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51574 Bug #: 51574 Summary: [4.6] Internal error: Segmentation fault (program cc1plus) Classification: Unclassified Product: gcc Version: 4.6.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned@gcc.gnu.org ReportedBy: hjl.tools@gmail.com Gcc 4.4 and 4.6 give me: [hjl@gnu-6 build-i686-linux]$ cat /tmp/x.ii extern char _binary_binary_txt_start[]; extern char _binary_binary_txt_end[]; extern char _binary_binary_txt_size[]; typedef unsigned long uintptr_t; extern "C" void __assert_fail (__const char *__assertion, __const char *__file, unsigned int __line, __const char *__function) throw () __attribute__ ((__noreturn__)); int main(int, char**) { int size = reinterpret_cast(_binary_binary_txt_size); ((size == _binary_binary_txt_end - _binary_binary_txt_start) ? static_cast (0) : __assert_fail ("size == _binary_binary_txt_end - _binary_binary_txt_start", "/export/gnu/import/git/binutils-x32/gold/testsuite/binary_test.cc", 39, __PRETTY_FUNCTION__)); return 0; } [hjl@gnu-6 build-i686-linux]$ /usr/gcc-4.6.3-x32/bin/gcc -S -O2 /tmp/x.ii [hjl@gnu-6 build-i686-linux]$ /usr/gcc-4.6.3-x32/bin/gcc -S -O2 -m32 /tmp/x.ii gcc: internal compiler error: Segmentation fault (program cc1plus) Please submit a full bug report, with preprocessed source if appropriate. See for instructions. [hjl@gnu-6 build-i686-linux]$ GCC 4.7 is OK.