public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/37404] ICE on va_arg and template deduction
       [not found] <bug-37404-4@http.gcc.gnu.org/bugzilla/>
@ 2013-06-09 16:37 ` paolo.carlini at oracle dot com
  2013-06-09 17:30 ` paolo.carlini at oracle dot com
  2013-06-09 18:27 ` paolo.carlini at oracle dot com
  2 siblings, 0 replies; 4+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-06-09 16:37 UTC (permalink / raw)
  To: gcc-bugs

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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|ice-on-valid-code           |ice-on-invalid-code
                 CC|gcc-bugs at gcc dot gnu.org        |
   Target Milestone|---                         |4.8.0

--- Comment #2 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Changing to ice-on-invalid-code. Fixed in 4.8.0 and mainline. I'm adding the
testcase and closing the PR.


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

* [Bug c++/37404] ICE on va_arg and template deduction
       [not found] <bug-37404-4@http.gcc.gnu.org/bugzilla/>
  2013-06-09 16:37 ` [Bug c++/37404] ICE on va_arg and template deduction paolo.carlini at oracle dot com
@ 2013-06-09 17:30 ` paolo.carlini at oracle dot com
  2013-06-09 18:27 ` paolo.carlini at oracle dot com
  2 siblings, 0 replies; 4+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-06-09 17:30 UTC (permalink / raw)
  To: gcc-bugs

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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|ice-on-invalid-code         |ice-on-valid-code

--- Comment #3 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Constructing a valid variant was easy.


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

* [Bug c++/37404] ICE on va_arg and template deduction
       [not found] <bug-37404-4@http.gcc.gnu.org/bugzilla/>
  2013-06-09 16:37 ` [Bug c++/37404] ICE on va_arg and template deduction paolo.carlini at oracle dot com
  2013-06-09 17:30 ` paolo.carlini at oracle dot com
@ 2013-06-09 18:27 ` paolo.carlini at oracle dot com
  2 siblings, 0 replies; 4+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-06-09 18:27 UTC (permalink / raw)
  To: gcc-bugs

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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

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

--- Comment #4 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Done.


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

* [Bug c++/37404] ICE on va_arg and template deduction
  2008-09-06 23:59 [Bug c++/37404] New: " sebor at roguewave dot com
@ 2008-09-07  0:35 ` pinskia at gcc dot gnu dot org
  0 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-07  0:35 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1841 bytes --]



------- Comment #1 from pinskia at gcc dot gnu dot org  2008-09-07 00:34 -------
This only ICEs on targets where va_list is an array.
Reduced testcase:
typedef __builtin_va_list __gnuc_va_list;
typedef __gnuc_va_list va_list;
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 () {
   S<va_list>::foo ();
}

--- CUT ---
It does not ICE for powerpc64-linux-gnu but does for spu-elf and
powerpc-linux-gnu.

With 4.1.1, I get the following error message:
t.cc: In static member function ‘static const char* S<T [N]>::foo() [with T =
__va_list_tag, int N = 1]’:
t.cc:6:   instantiated from here
t.cc:4: error: invalid cast from type ‘int’ to type ‘__va_list_tag’

Also Note I don't think this is valid code.
If we change the template to:
struct S<T [N]> { static const char* foo () { return new T (); } };

I get an ICE even with 4.1.1:
t.cc: In static member function ‘static const char* S<T [N]>::foo() [with T =
__va_list_tag, int N = 1]’:
t.cc:6:   instantiated from here
t.cc:4: internal compiler error: in build_zero_init, at cp/init.c:260


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
 GCC target triplet|                            |x86_64-*-*, powerpc-linux-
                   |                            |gnu, spu-elf
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2008-09-07 00:34:18
               date|                            |


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


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

end of thread, other threads:[~2013-06-09 18:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-37404-4@http.gcc.gnu.org/bugzilla/>
2013-06-09 16:37 ` [Bug c++/37404] ICE on va_arg and template deduction paolo.carlini at oracle dot com
2013-06-09 17:30 ` paolo.carlini at oracle dot com
2013-06-09 18:27 ` paolo.carlini at oracle dot com
2008-09-06 23:59 [Bug c++/37404] New: " 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).