public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/3698: improper handling of an extern declared inline function
@ 2002-10-21 17:49 zack
  0 siblings, 0 replies; 2+ messages in thread
From: zack @ 2002-10-21 17:49 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, martin.gerbershagen, nobody

Synopsis: improper handling of an extern declared inline function

State-Changed-From-To: open->closed
State-Changed-By: zack
State-Changed-When: Mon Oct 21 17:49:16 2002
State-Changed-Why:
    Fixed in 3.2.

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=3698


^ permalink raw reply	[flat|nested] 2+ messages in thread

* c++/3698: improper handling of an extern declared inline function
@ 2001-07-16  1:46 martin.gerbershagen
  0 siblings, 0 replies; 2+ messages in thread
From: martin.gerbershagen @ 2001-07-16  1:46 UTC (permalink / raw)
  To: gcc-gnats

>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:


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-10-22  0:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-21 17:49 c++/3698: improper handling of an extern declared inline function zack
  -- strict thread matches above, loose matches on Subject: below --
2001-07-16  1:46 martin.gerbershagen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).