public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/37288]  New: ICE using auto as function return type or parameter
@ 2008-08-30 13:03 chris dot fairles at gmail dot com
  2008-08-30 13:16 ` [Bug c++/37288] " chris dot fairles at gmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: chris dot fairles at gmail dot com @ 2008-08-30 13:03 UTC (permalink / raw)
  To: gcc-bugs

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

Compiling the following with -std=c++0x,

auto foo() { }

int main()
{
  foo();
}

gives,
test2.cpp: In function ‘auto foo()’:
test2.cpp:1: internal compiler error: in dependent_type_p, at cp/pt.c:15895

This also gives the same ICE (with -std=c++0x):

void foo(auto i)
{
  (void)i;
}

int main()
{
  foo(42);
}

Chris


-- 
           Summary: ICE using auto as function return type or parameter
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: chris dot fairles at gmail dot com
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu


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


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

* [Bug c++/37288] ICE using auto as function return type or parameter
  2008-08-30 13:03 [Bug c++/37288] New: ICE using auto as function return type or parameter chris dot fairles at gmail dot com
@ 2008-08-30 13:16 ` chris dot fairles at gmail dot com
  2008-08-30 19:29 ` jason at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: chris dot fairles at gmail dot com @ 2008-08-30 13:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from chris dot fairles at gmail dot com  2008-08-30 13:14 -------
Also, I believe these cases are ice-on-invalid. Jason? 


-- 

chris dot fairles at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jason at redhat dot com


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


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

* [Bug c++/37288] ICE using auto as function return type or parameter
  2008-08-30 13:03 [Bug c++/37288] New: ICE using auto as function return type or parameter chris dot fairles at gmail dot com
  2008-08-30 13:16 ` [Bug c++/37288] " chris dot fairles at gmail dot com
@ 2008-08-30 19:29 ` jason at gcc dot gnu dot org
  2008-08-30 23:15 ` jason at gcc dot gnu dot org
  2008-09-01 19:36 ` jason at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: jason at gcc dot gnu dot org @ 2008-08-30 19:29 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|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-08-30 19:27:46
               date|                            |


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


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

* [Bug c++/37288] ICE using auto as function return type or parameter
  2008-08-30 13:03 [Bug c++/37288] New: ICE using auto as function return type or parameter chris dot fairles at gmail dot com
  2008-08-30 13:16 ` [Bug c++/37288] " chris dot fairles at gmail dot com
  2008-08-30 19:29 ` jason at gcc dot gnu dot org
@ 2008-08-30 23:15 ` jason at gcc dot gnu dot org
  2008-09-01 19:36 ` jason at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: jason at gcc dot gnu dot org @ 2008-08-30 23:15 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jason at gcc dot gnu dot org  2008-08-30 23:14 -------
Subject: Bug 37288

Author: jason
Date: Sat Aug 30 23:12:45 2008
New Revision: 139811

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=139811
Log:
        PR c++/37288
        * pt.c (dependent_type_p): Don't abort on auto outside of a template.

Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/pt.c
    trunk/gcc/testsuite/g++.dg/cpp0x/auto3.C


-- 


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


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

* [Bug c++/37288] ICE using auto as function return type or parameter
  2008-08-30 13:03 [Bug c++/37288] New: ICE using auto as function return type or parameter chris dot fairles at gmail dot com
                   ` (2 preceding siblings ...)
  2008-08-30 23:15 ` jason at gcc dot gnu dot org
@ 2008-09-01 19:36 ` jason at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: jason at gcc dot gnu dot org @ 2008-09-01 19:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jason at gcc dot gnu dot org  2008-09-01 19:35 -------
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=37288


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

end of thread, other threads:[~2008-09-01 19:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-30 13:03 [Bug c++/37288] New: ICE using auto as function return type or parameter chris dot fairles at gmail dot com
2008-08-30 13:16 ` [Bug c++/37288] " chris dot fairles at gmail dot com
2008-08-30 19:29 ` jason at gcc dot gnu dot org
2008-08-30 23:15 ` jason at gcc dot gnu dot org
2008-09-01 19:36 ` 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).