From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5421 invoked by alias); 25 Jun 2007 10:01:01 -0000 Received: (qmail 5375 invoked by uid 48); 25 Jun 2007 10:00:49 -0000 Date: Mon, 25 Jun 2007 10:01:00 -0000 Subject: [Bug c++/32492] New: attribute always_inline -> sorry, unimplemented: recursive inlining X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "wouter dot vermaelen at scarlet dot be" 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: 2007-06/txt/msg02309.txt.bz2 > cat bug.ii __attribute__((always_inline)) void f1() {} __attribute__((always_inline)) void f2(char) {} void f3() { f1(); f2(0); } > g++ bug.ii bug.ii: In function ‘void f3()’: bug.ii:2: sorry, unimplemented: inlining failed in call to ‘void f2(char)’: recursive inlining bug.ii:3: sorry, unimplemented: called from here -- Summary: attribute always_inline -> sorry, unimplemented: recursive inlining Product: gcc Version: 4.3.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: wouter dot vermaelen at scarlet dot be http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32492