From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29767 invoked by alias); 16 Nov 2011 20:45:35 -0000 Received: (qmail 29759 invoked by uid 22791); 16 Nov 2011 20:45:34 -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; Wed, 16 Nov 2011 20:45:20 +0000 From: "hjl.tools at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/51177] [4.7 Regression] bootstrap failure with inlined isXXX functions Date: Wed, 16 Nov 2011 20:50:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap 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: Summary Message-ID: In-Reply-To: References: 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-11/txt/msg01702.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51177 H.J. Lu changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[4.7 Regression] bootstrap |[4.7 Regression] bootstrap |failure on Linux/ia32 |failure with inlined isXXX | |functions --- Comment #1 from H.J. Lu 2011-11-16 20:45:17 UTC --- The newer glibc includes inlined isXXX functions when compiling C++ code: extern __const unsigned short int **__ctype_b_loc (void) throw () __attribute__ ((__const)); extern int isspace (int) throw (); extern __inline __attribute__ ((__gnu_inline__)) int isspace (int __c) throw () { return (*__ctype_b_loc ())[(int) (__c)] & (unsigned short int) _ISspace; } } libjava/prims.cc uses isspace which leads to __cxa_call_unexpected.