public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor
@ 2012-12-25  7:30 ppluzhnikov at google dot com
  2012-12-25  8:06 ` [Bug c++/55804] " ppluzhnikov at google dot com
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: ppluzhnikov at google dot com @ 2012-12-25  7:30 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55804
           Summary: [4.7/4.8 regression] GCC omits required call to
                    constructor
    Classification: Unclassified
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ppluzhnikov@google.com


Test case (courtesy creduce-2.0.1):

/// --- cut ---
template <typename> struct vector {
  vector() { }
};

typedef vector<int> Arrays[1];
class C
{
    vector<int> v_;
    void Foo(const Arrays &);
};
Arrays a;
/// --- cut ---


GCC-4.7 before r194286 (PR55032) was merged:

g++ -S pp.ii -o pp-good.s
c++filt < pp-good.s | grep call
    call    vector<int>::vector()
    call    __static_initialization_and_destruction_0(int, int)


Current trunk:

cat pp-bad.7765.s
    .file    "pp.ii"
    .globl    a
    .bss
    .type    a, @object
    .size    a, 1
a:
    .zero    1
    .ident    "GCC: (GNU) 4.8.0 20121222 (experimental)"
    .section    .note.GNU-stack,"",@progbits


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
@ 2012-12-25  8:06 ` ppluzhnikov at google dot com
  2012-12-26 22:20 ` pinskia at gcc dot gnu.org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: ppluzhnikov at google dot com @ 2012-12-25  8:06 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #1 from Paul Pluzhnikov <ppluzhnikov at google dot com> 2012-12-25 08:06:13 UTC ---
Re-confirmed with today's trunk (r194713).


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
  2012-12-25  8:06 ` [Bug c++/55804] " ppluzhnikov at google dot com
@ 2012-12-26 22:20 ` pinskia at gcc dot gnu.org
  2012-12-31 10:20 ` pinskia at gcc dot gnu.org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-12-26 22:20 UTC (permalink / raw)
  To: gcc-bugs


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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|unknown                     |4.7.3
   Target Milestone|---                         |4.8.0


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
  2012-12-25  8:06 ` [Bug c++/55804] " ppluzhnikov at google dot com
  2012-12-26 22:20 ` pinskia at gcc dot gnu.org
@ 2012-12-31 10:20 ` pinskia at gcc dot gnu.org
  2013-01-02 14:54 ` jason at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-12-31 10:20 UTC (permalink / raw)
  To: gcc-bugs


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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
      Known to work|                            |4.7.0
           Keywords|                            |wrong-code
   Last reconfirmed|                            |2012-12-31
                 CC|                            |jason at gcc dot gnu.org
     Ever Confirmed|0                           |1
      Known to fail|                            |4.7.3, 4.8.0
           Severity|normal                      |blocker

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> 2012-12-31 10:19:58 UTC ---
Confirmed, here is a run-time testcase:
int t = 0;
template <typename> struct vector {
  vector() { t++; }
};

typedef vector<int> Arrays[1];
class C
{
    vector<int> v_;
    void Foo(const Arrays &);
};
Arrays a;

int main(void)
{
  if (t!=1)
    __builtin_abort ();
  return 0;
}


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
                   ` (2 preceding siblings ...)
  2012-12-31 10:20 ` pinskia at gcc dot gnu.org
@ 2013-01-02 14:54 ` jason at gcc dot gnu.org
  2013-01-02 19:04 ` jason at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jason at gcc dot gnu.org @ 2013-01-02 14:54 UTC (permalink / raw)
  To: gcc-bugs


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

Jason Merrill <jason at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
         AssignedTo|unassigned at gcc dot       |jason at gcc dot gnu.org
                   |gnu.org                     |
           Severity|blocker                     |normal


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
                   ` (3 preceding siblings ...)
  2013-01-02 14:54 ` jason at gcc dot gnu.org
@ 2013-01-02 19:04 ` jason at gcc dot gnu.org
  2013-01-02 19:05 ` jason at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jason at gcc dot gnu.org @ 2013-01-02 19:04 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #3 from Jason Merrill <jason at gcc dot gnu.org> 2013-01-02 19:03:17 UTC ---
Author: jason
Date: Wed Jan  2 19:03:04 2013
New Revision: 194811

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=194811
Log:
    PR c++/55804
    PR c++/55032
    PR c++/55245
    * tree.c (build_array_type_1): Revert earlier change.
    * cp/tree.c (build_cplus_array_type): Copy layout information
    to main variant if necessary.

Added:
    trunk/gcc/testsuite/g++.dg/init/array33.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/tree.c
    trunk/gcc/tree.c


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
                   ` (4 preceding siblings ...)
  2013-01-02 19:04 ` jason at gcc dot gnu.org
@ 2013-01-02 19:05 ` jason at gcc dot gnu.org
  2013-01-02 19:05 ` jason at gcc dot gnu.org
  2013-01-02 20:15 ` jason at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: jason at gcc dot gnu.org @ 2013-01-02 19:05 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #4 from Jason Merrill <jason at gcc dot gnu.org> 2013-01-02 19:03:57 UTC ---
Author: jason
Date: Wed Jan  2 19:03:37 2013
New Revision: 194812

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=194812
Log:
    PR c++/55804
    PR c++/55032
    PR c++/55245
    * tree.c (build_array_type_1): Revert earlier change.
    * cp/tree.c (build_cplus_array_type): Copy layout information
    to main variant if necessary.

Added:
    branches/gcc-4_7-branch/gcc/testsuite/g++.dg/init/array33.C
Modified:
    branches/gcc-4_7-branch/gcc/ChangeLog
    branches/gcc-4_7-branch/gcc/cp/ChangeLog
    branches/gcc-4_7-branch/gcc/cp/tree.c
    branches/gcc-4_7-branch/gcc/tree.c


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
                   ` (5 preceding siblings ...)
  2013-01-02 19:05 ` jason at gcc dot gnu.org
@ 2013-01-02 19:05 ` jason at gcc dot gnu.org
  2013-01-02 20:15 ` jason at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: jason at gcc dot gnu.org @ 2013-01-02 19:05 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #5 from Jason Merrill <jason at gcc dot gnu.org> 2013-01-02 19:04:10 UTC ---
Author: jason
Date: Wed Jan  2 19:03:46 2013
New Revision: 194813

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=194813
Log:
    PR c++/55804
    PR c++/55032
    PR c++/55245
    * tree.c (build_array_type_1): Revert earlier change.
    * cp/tree.c (build_cplus_array_type): Copy layout information
    to main variant if necessary.

Added:
    branches/gcc-4_6-branch/gcc/testsuite/g++.dg/init/array33.C
Modified:
    branches/gcc-4_6-branch/gcc/ChangeLog
    branches/gcc-4_6-branch/gcc/cp/ChangeLog
    branches/gcc-4_6-branch/gcc/cp/tree.c
    branches/gcc-4_6-branch/gcc/tree.c


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

* [Bug c++/55804] [4.7/4.8 regression] GCC omits required call to constructor
  2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
                   ` (6 preceding siblings ...)
  2013-01-02 19:05 ` jason at gcc dot gnu.org
@ 2013-01-02 20:15 ` jason at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: jason at gcc dot gnu.org @ 2013-01-02 20:15 UTC (permalink / raw)
  To: gcc-bugs


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

Jason Merrill <jason at gcc dot gnu.org> changed:

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

--- Comment #6 from Jason Merrill <jason at gcc dot gnu.org> 2013-01-02 20:15:10 UTC ---
Fixed.


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

end of thread, other threads:[~2013-01-02 20:15 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-25  7:30 [Bug c++/55804] New: [4.7/4.8 regression] GCC omits required call to constructor ppluzhnikov at google dot com
2012-12-25  8:06 ` [Bug c++/55804] " ppluzhnikov at google dot com
2012-12-26 22:20 ` pinskia at gcc dot gnu.org
2012-12-31 10:20 ` pinskia at gcc dot gnu.org
2013-01-02 14:54 ` jason at gcc dot gnu.org
2013-01-02 19:04 ` jason at gcc dot gnu.org
2013-01-02 19:05 ` jason at gcc dot gnu.org
2013-01-02 19:05 ` jason at gcc dot gnu.org
2013-01-02 20:15 ` jason at gcc dot gnu.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).