public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/60273] New: gcc gets confused when one class uses variadic
@ 2014-02-19 12:39 walter.mascarenhas at gmail dot com
  2014-02-19 20:32 ` [Bug c++/60273] " daniel.kruegler at googlemail dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: walter.mascarenhas at gmail dot com @ 2014-02-19 12:39 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 60273
           Summary: gcc gets confused when one class uses variadic
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: walter.mascarenhas at gmail dot com

Created attachment 32171
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=32171&action=edit
gcc asked me to submit this file

//
// When compiling this file in Ubuntu 13.04, gcc 4.8.1 crashes with the
// following message. Clang 3.0 compiles the file with no problems.
//
// /home/walter/code/klein/tests/platform/gcc_bug/main.cc:-1: In instantiation
of 'struct Bar<Foo<int> >':
// /home/walter/code/klein/tests/platform/gcc_bug/main.cc:25: required from
here
// /home/walter/code/klein/tests/platform/gcc_bug/main.cc:20: internal compiler
error: Segmentation fault
//  template<int... Ns> using Buggy = typename X::template S<Ns...>;
// :-1: error: [main.o] Error 1^
//

struct A {};

template <class X>
struct Foo
{
  using Type = int;

  // if the next line is replaced by template <int... N> then all is fine
  template <int N1, int N2>
  using S = A;
};

template <class X>
struct Bar
{
  // if the next line is commented then all is fine.
  using Type = typename X::Type;

  // if the next line is commented then all is fine.
  template<int... Ns> using Buggy = typename X::template S<Ns...>;
};

void foobar()
{
  Bar< Foo<int> > bf;
}


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

* [Bug c++/60273] gcc gets confused when one class uses variadic
  2014-02-19 12:39 [Bug c++/60273] New: gcc gets confused when one class uses variadic walter.mascarenhas at gmail dot com
@ 2014-02-19 20:32 ` daniel.kruegler at googlemail dot com
  2014-02-19 20:36 ` mpolacek at gcc dot gnu.org
  2021-07-23  1:12 ` [Bug c++/60273] [DR 1430] " pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: daniel.kruegler at googlemail dot com @ 2014-02-19 20:32 UTC (permalink / raw)
  To: gcc-bugs

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

Daniel Krügler <daniel.kruegler at googlemail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |daniel.kruegler@googlemail.
                   |                            |com

--- Comment #1 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
My understanding is that your example is touching an open language issue,
namely

http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#1430

The current tendency seems to be that this should be ill-formed (personally I'm
not happy with that decision). Current clang and gcc do both reject your code.
I suggest to mark this issue as deferred pending 1430.
>From gcc-bugs-return-444263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Feb 19 20:36:45 2014
Return-Path: <gcc-bugs-return-444263-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 30232 invoked by alias); 19 Feb 2014 20:36:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 30172 invoked by uid 48); 19 Feb 2014 20:36:41 -0000
From: "warnerme at ptd dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/59933] for loop goes wild with assert() enabled
Date: Wed, 19 Feb 2014 20:36:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.2
X-Bugzilla-Keywords:
X-Bugzilla-Severity: major
X-Bugzilla-Who: warnerme at ptd dot net
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-59933-4-zGPKu9bXlJ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59933-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59933-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-02/txt/msg02020.txt.bz2
Content-length: 347

http://gcc.gnu.org/bugzilla/show_bug.cgi?idY933

--- Comment #11 from Mark Warner <warnerme at ptd dot net> ---
I'm confused .. what about..
for (k = i; k < (int)(sizeof(NSQ_del_dec_struct) / sizeof(opus_int32)); ++k)
... is illegal or invalid ?
Why does it only fail if -DDEBUG is defined ?
I mean, this code worked fine for months .. and now


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

* [Bug c++/60273] gcc gets confused when one class uses variadic
  2014-02-19 12:39 [Bug c++/60273] New: gcc gets confused when one class uses variadic walter.mascarenhas at gmail dot com
  2014-02-19 20:32 ` [Bug c++/60273] " daniel.kruegler at googlemail dot com
@ 2014-02-19 20:36 ` mpolacek at gcc dot gnu.org
  2021-07-23  1:12 ` [Bug c++/60273] [DR 1430] " pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2014-02-19 20:36 UTC (permalink / raw)
  To: gcc-bugs

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

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |SUSPENDED
   Last reconfirmed|                            |2014-02-19
                 CC|                            |mpolacek at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Ok, suspended for now.


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

* [Bug c++/60273] [DR 1430] gcc gets confused when one class uses variadic
  2014-02-19 12:39 [Bug c++/60273] New: gcc gets confused when one class uses variadic walter.mascarenhas at gmail dot com
  2014-02-19 20:32 ` [Bug c++/60273] " daniel.kruegler at googlemail dot com
  2014-02-19 20:36 ` mpolacek at gcc dot gnu.org
@ 2021-07-23  1:12 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-07-23  1:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60273

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
The DR is still active but clang no longer accepts the code. and GCC no longer
crashes either.

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

end of thread, other threads:[~2021-07-23  1:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-19 12:39 [Bug c++/60273] New: gcc gets confused when one class uses variadic walter.mascarenhas at gmail dot com
2014-02-19 20:32 ` [Bug c++/60273] " daniel.kruegler at googlemail dot com
2014-02-19 20:36 ` mpolacek at gcc dot gnu.org
2021-07-23  1:12 ` [Bug c++/60273] [DR 1430] " pinskia 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).