public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/10483: Spurious reference created to integer constant in ternary op
@ 2003-04-24 16:23 nathan
  0 siblings, 0 replies; 2+ messages in thread
From: nathan @ 2003-04-24 16:23 UTC (permalink / raw)
  To: dej, gcc-bugs, gcc-prs, nobody

Synopsis: Spurious reference created to integer constant in ternary op

State-Changed-From-To: open->closed
State-Changed-By: nathan
State-Changed-When: Thu Apr 24 16:23:36 2003
State-Changed-Why:
    not a bug, a pessimization. already logged.

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


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

* c++/10483: Spurious reference created to integer constant in ternary op
@ 2003-04-24 16:16 dej
  0 siblings, 0 replies; 2+ messages in thread
From: dej @ 2003-04-24 16:16 UTC (permalink / raw)
  To: gcc-gnats


>Number:         10483
>Category:       c++
>Synopsis:       Spurious reference created to integer constant in ternary op
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Thu Apr 24 16:16:00 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator:     dej@inode.org
>Release:        gcc version 2.95.3 20010315 (release) [FreeBSD]
>Organization:
>Environment:
FreeBSD slam.inode.org 4.6-RELEASE FreeBSD 4.6-RELEASE #2: Sun Oct  6 18:46:44 EDT 2002     dej@slam.inode.org:/usr/src/sys/compile/SLAM  i386
>Description:
Given the following source:

using namespace std;

struct Foo {
    static const int BAR = 1;
    static const int BAZ = 2;
};


int main(int argc, char *argv[])
{
    int c = argc ? Foo::BAR : Foo::BAZ;
    return 0;
}

and invoked like:

/usr/local/gcc322/bin/gcc test.cpp -o test -lstdc++

I obtain:
/var/tmp//ccu6NK1Z.o: In function `main':
/var/tmp//ccu6NK1Z.o(.text+0x17): undefined reference to `Foo::BAR'
/var/tmp//ccu6NK1Z.o(.text+0x21): undefined reference to `Foo::BAZ'

Since BAR and BAZ are static integer constants, they should not be generating linker references.  This happens only with the ternary operator; the equivalent if/else code does not produce the problem.
>How-To-Repeat:
See description.
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


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

end of thread, other threads:[~2003-04-24 16:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-24 16:23 c++/10483: Spurious reference created to integer constant in ternary op nathan
  -- strict thread matches above, loose matches on Subject: below --
2003-04-24 16:16 dej

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).