public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/11770] New: segv
@ 2003-08-02  7:42 igodard at pacbell dot net
  2003-08-02  7:44 ` [Bug c++/11770] segv igodard at pacbell dot net
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: igodard at pacbell dot net @ 2003-08-02  7:42 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11770

           Summary: segv
           Product: gcc
           Version: 3.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: igodard at pacbell dot net
                CC: gcc-bugs at gcc dot gnu dot org

Something on the command line is essential - plain "g++ tst.ii"
will compile without the segv.


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

* [Bug c++/11770] segv
  2003-08-02  7:42 [Bug c++/11770] New: segv igodard at pacbell dot net
  2003-08-02  7:44 ` [Bug c++/11770] segv igodard at pacbell dot net
@ 2003-08-02  7:44 ` igodard at pacbell dot net
  2003-08-02 15:33 ` pinskia at physics dot uc dot edu
  2003-08-05 19:44 ` bangerth at dealii dot org
  3 siblings, 0 replies; 5+ messages in thread
From: igodard at pacbell dot net @ 2003-08-02  7:44 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11770



------- Additional Comments From igodard at pacbell dot net  2003-08-02 07:43 -------
Created an attachment (id=4549)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4549&action=view)
Compiler output (-v -save-temps)


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

* [Bug c++/11770] segv
  2003-08-02  7:42 [Bug c++/11770] New: segv igodard at pacbell dot net
@ 2003-08-02  7:44 ` igodard at pacbell dot net
  2003-08-02  7:44 ` igodard at pacbell dot net
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: igodard at pacbell dot net @ 2003-08-02  7:44 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11770



------- Additional Comments From igodard at pacbell dot net  2003-08-02 07:44 -------
Created an attachment (id=4550)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4550&action=view)
Source code


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

* [Bug c++/11770] segv
  2003-08-02  7:42 [Bug c++/11770] New: segv igodard at pacbell dot net
  2003-08-02  7:44 ` [Bug c++/11770] segv igodard at pacbell dot net
  2003-08-02  7:44 ` igodard at pacbell dot net
@ 2003-08-02 15:33 ` pinskia at physics dot uc dot edu
  2003-08-05 19:44 ` bangerth at dealii dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-08-02 15:33 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11770



------- Additional Comments From pinskia at physics dot uc dot edu  2003-08-02 15:33 -------
With the mainline (20030802), this no longer ICE's but since the mainline now has two-stage name 
lookups and the old libstdc++ was not complaint with that, I cannot really tell if it is fixed.
I can reproduce it with 3.3.1 (20030707), 3.2.3, 3.2.2, 3.0.4, and 2.95.3 though.
I have not tried to reduce the source though.


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

* [Bug c++/11770] segv
  2003-08-02  7:42 [Bug c++/11770] New: segv igodard at pacbell dot net
                   ` (2 preceding siblings ...)
  2003-08-02 15:33 ` pinskia at physics dot uc dot edu
@ 2003-08-05 19:44 ` bangerth at dealii dot org
  3 siblings, 0 replies; 5+ messages in thread
From: bangerth at dealii dot org @ 2003-08-05 19:44 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11770


bangerth at dealii dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED


------- Additional Comments From bangerth at dealii dot org  2003-08-05 19:44 -------
Confirmed. Here's a reduced testcase:
------------------------------
template<typename T>
struct B {
    typedef B<T> S;
};

template<typename T>
struct D : B<T> {
    friend class S;
    D(T v) : B(v) {}
};
------------------------------------
This ICEs every gcc version up to and including 3.3:
g/x> /home/bangerth/bin/gcc-3.3-pre/bin/c++ -c x.cc
x.cc:8: warning: `class S' declares a new type at namespace scope
x.cc:8: warning:   names from dependent base classes are not visible to
   unqualified name lookup - to refer to the inherited type, say `class D::S'
x.cc:9: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

However, this seems already fixed in mainline.

W.


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

end of thread, other threads:[~2003-08-05 19:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-02  7:42 [Bug c++/11770] New: segv igodard at pacbell dot net
2003-08-02  7:44 ` [Bug c++/11770] segv igodard at pacbell dot net
2003-08-02  7:44 ` igodard at pacbell dot net
2003-08-02 15:33 ` pinskia at physics dot uc dot edu
2003-08-05 19:44 ` bangerth at dealii dot org

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