public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/37404]  New: ICE on va_arg and template deduction
@ 2008-09-06 23:59 sebor at roguewave dot com
  2008-09-07  0:35 ` [Bug c++/37404] " pinskia at gcc dot gnu dot org
  0 siblings, 1 reply; 2+ messages in thread
From: sebor at roguewave dot com @ 2008-09-06 23:59 UTC (permalink / raw)
  To: gcc-bugs

gcc 4.3.1 gets an ICE on the program below. I didn't try 4.3.2 or 4.4.0.

$ cat t.C && gcc t.C
#include <stdarg.h>
#include <string.h>

const char* foobar (void*) { return 0; }

template <class> struct S { static const char* foo () { return 0; } };
template <class T, int N>
struct S<T [N]> { static const char* foo () { return foobar (T ()); } };

int main () {
    va_list va;
    memset (&va, 0, sizeof va);

    S<va_list>::foo ();
}
t.C: In static member function 'static const char* S<T [N]>::foo() [with T =
__va_list_tag, int N = 1]':
t.C:14:   instantiated from here
t.C:8: internal compiler error: in build_special_member_call, at cp/call.c:5325
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.


-- 
           Summary: ICE on va_arg and template deduction
           Product: gcc
           Version: 4.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: sebor at roguewave dot com


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


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

end of thread, other threads:[~2008-09-07  0:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-06 23:59 [Bug c++/37404] New: ICE on va_arg and template deduction sebor at roguewave dot com
2008-09-07  0:35 ` [Bug c++/37404] " pinskia 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).