public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/38649]  New: [4.4 regression] Trouble with defaulted constructors
@ 2008-12-27 23:52 reichelt at gcc dot gnu dot org
  2008-12-27 23:53 ` [Bug c++/38649] " reichelt at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2008-12-27 23:52 UTC (permalink / raw)
  To: gcc-bugs

The following invalid code snippets are accepted on mainline:

========================
struct A
{
  A(...) = default;
};
========================

========================
struct A
{
  A(const A&, ...) = default;
};
========================

Apparently defaultable_fn_p in cp/class.c doesn't handle the ellipsis
correctly. This makes me wonder whether type_has_user_nondefault_constructor
which contains similar code has the same problem.


This bug can be exploited to trigger an ICE:

========================
struct A
{
  A(...) = default;
  A(const A&);
};

void foo()
{
  A a;
}
========================

bug.cc: In constructor 'A::A(...)':
bug.cc:3: internal compiler error: Segmentation fault
Please submit a full bug report, [etc.]

This makes the bug a regression as the second code snippet didn't crash
previous compilers.


-- 
           Summary: [4.4 regression] Trouble with defaulted constructors
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Keywords: ice-on-invalid-code, accepts-invalid, monitored
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: reichelt at gcc dot gnu dot org


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


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

* [Bug c++/38649] [4.4 regression] Trouble with defaulted constructors
  2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
@ 2008-12-27 23:53 ` reichelt at gcc dot gnu dot org
  2008-12-27 23:59 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2008-12-27 23:53 UTC (permalink / raw)
  To: gcc-bugs



-- 

reichelt at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.4.0


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


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

* [Bug c++/38649] [4.4 regression] Trouble with defaulted constructors
  2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
  2008-12-27 23:53 ` [Bug c++/38649] " reichelt at gcc dot gnu dot org
@ 2008-12-27 23:59 ` pinskia at gcc dot gnu dot org
  2008-12-29 16:20 ` paolo dot carlini at oracle dot com
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-12-27 23:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2008-12-27 23:57 -------
Confirmed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-12-27 23:57:57
               date|                            |


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


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

* [Bug c++/38649] [4.4 regression] Trouble with defaulted constructors
  2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
  2008-12-27 23:53 ` [Bug c++/38649] " reichelt at gcc dot gnu dot org
  2008-12-27 23:59 ` pinskia at gcc dot gnu dot org
@ 2008-12-29 16:20 ` paolo dot carlini at oracle dot com
  2008-12-29 21:23 ` jason at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: paolo dot carlini at oracle dot com @ 2008-12-29 16:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from paolo dot carlini at oracle dot com  2008-12-29 16:17 -------
Maybe Jason is interested...


-- 

paolo dot carlini at oracle dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at gcc dot gnu dot org


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


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

* [Bug c++/38649] [4.4 regression] Trouble with defaulted constructors
  2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2008-12-29 16:20 ` paolo dot carlini at oracle dot com
@ 2008-12-29 21:23 ` jason at gcc dot gnu dot org
  2008-12-29 23:36 ` rguenth at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: jason at gcc dot gnu dot org @ 2008-12-29 21:23 UTC (permalink / raw)
  To: gcc-bugs



-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jason at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2008-12-27 23:57:57         |2008-12-29 21:03:09
               date|                            |


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


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

* [Bug c++/38649] [4.4 regression] Trouble with defaulted constructors
  2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2008-12-29 21:23 ` jason at gcc dot gnu dot org
@ 2008-12-29 23:36 ` rguenth at gcc dot gnu dot org
  2009-02-11  5:23 ` jason at gcc dot gnu dot org
  2009-02-11  5:25 ` jason at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-29 23:36 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2


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


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

* [Bug c++/38649] [4.4 regression] Trouble with defaulted constructors
  2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2008-12-29 23:36 ` rguenth at gcc dot gnu dot org
@ 2009-02-11  5:23 ` jason at gcc dot gnu dot org
  2009-02-11  5:25 ` jason at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-02-11  5:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jason at gcc dot gnu dot org  2009-02-11 05:23 -------
Subject: Bug 38649

Author: jason
Date: Wed Feb 11 05:23:38 2009
New Revision: 144092

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=144092
Log:
        PR c++/38649
        * class.c (defaultable_fn_p): Handle ... properly.

Added:
    trunk/gcc/testsuite/g++.dg/cpp0x/defaulted8.C
Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/class.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug c++/38649] [4.4 regression] Trouble with defaulted constructors
  2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2009-02-11  5:23 ` jason at gcc dot gnu dot org
@ 2009-02-11  5:25 ` jason at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jason at gcc dot gnu dot org @ 2009-02-11  5:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jason at gcc dot gnu dot org  2009-02-11 05:25 -------
Fixed.


-- 

jason at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2009-02-11  5:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-27 23:52 [Bug c++/38649] New: [4.4 regression] Trouble with defaulted constructors reichelt at gcc dot gnu dot org
2008-12-27 23:53 ` [Bug c++/38649] " reichelt at gcc dot gnu dot org
2008-12-27 23:59 ` pinskia at gcc dot gnu dot org
2008-12-29 16:20 ` paolo dot carlini at oracle dot com
2008-12-29 21:23 ` jason at gcc dot gnu dot org
2008-12-29 23:36 ` rguenth at gcc dot gnu dot org
2009-02-11  5:23 ` jason at gcc dot gnu dot org
2009-02-11  5:25 ` jason at gcc dot gnu 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).