From mboxrd@z Thu Jan 1 00:00:00 1970 From: martin.gerbershagen@icn.siemens.de To: gcc-gnats@gcc.gnu.org Subject: c++/3698: improper handling of an extern declared inline function Date: Mon, 16 Jul 2001 01:46:00 -0000 Message-id: <20010716083605.1206.qmail@sourceware.cygnus.com> X-SW-Source: 2001-07/msg00417.html List-Id: >Number: 3698 >Category: c++ >Synopsis: improper handling of an extern declared inline function >Confidential: no >Severity: serious >Priority: medium >Responsible: unassigned >State: open >Class: sw-bug >Submitter-Id: net >Arrival-Date: Mon Jul 16 01:46:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Martin Gerbershagen >Release: g++-3.0 >Organization: >Environment: sparc-sun-solaris2.6 >Description: If a function, that has been defined as a global inline function, is declared extern in a local scope, a reference to an external function is emitted in the object code and not the substitution of the inline function. If the extern declaration is moved to the global scope the inline substitution works correctly. The generated code creates link errors later on. g++ b.C /var/tmp/ccaFlZr0.o: In function `main': /var/tmp/ccaFlZr0.o(.text+0x8): undefined reference to `OHashKey(X const&)' collect2: ld returned 1 exit status >How-To-Repeat: class X { public: int i; }; inline const int& OHashKey(const X& x) { return x.i; } int main() { extern const int& OHashKey(const X& x); X x; return OHashKey(x); } >Fix: >Release-Note: >Audit-Trail: >Unformatted: