public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/91867] Internal compiler error in simple for(auto) loop when using -std=c++11 with -fconcepts
       [not found] <bug-91867-4@http.gcc.gnu.org/bugzilla/>
@ 2020-05-10 23:11 ` me at myrrec dot space
  2020-05-23  6:08 ` haoxintu at gmail dot com
  2021-10-02  7:21 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 3+ messages in thread
From: me at myrrec dot space @ 2020-05-10 23:11 UTC (permalink / raw)
  To: gcc-bugs

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

me at myrrec dot space changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |me at myrrec dot space

--- Comment #3 from me at myrrec dot space ---
Also confirmed with -std=c++17 and -std=c++2a

------------------------main.cpp--
int main(){ 
  for (bool e : {true, false});
}
---------------------------------

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

* [Bug c++/91867] Internal compiler error in simple for(auto) loop when using -std=c++11 with -fconcepts
       [not found] <bug-91867-4@http.gcc.gnu.org/bugzilla/>
  2020-05-10 23:11 ` [Bug c++/91867] Internal compiler error in simple for(auto) loop when using -std=c++11 with -fconcepts me at myrrec dot space
@ 2020-05-23  6:08 ` haoxintu at gmail dot com
  2021-10-02  7:21 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 3+ messages in thread
From: haoxintu at gmail dot com @ 2020-05-23  6:08 UTC (permalink / raw)
  To: gcc-bugs

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

Haoxin Tu <haoxintu at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |haoxintu at gmail dot com

--- Comment #4 from Haoxin Tu <haoxintu at gmail dot com> ---
I also find this in a simple code.

test.cc
include<iostream>
int main(){
 for(int i:{});
}

$g++ --version
g++ (GCC) 10.0.1 20200420 (experimental)
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$g++ -fconcepts -std=c++11 test.cc
test.cc: In function ‘int main()’:
test.cc:3:13: internal compiler error: in type_unification_real, at
cp/pt.c:21752
    3 |  for(int i:{});
      |             ^
0x6bf3ed type_unification_real
        ../../gcc/cp/pt.c:21752
0xa427ff do_auto_deduction(tree_node*, tree_node*, tree_node*, int,
auto_deduction_context, tree_node*, int)
        ../../gcc/cp/pt.c:28954
0x9e4025 build_range_temp
        ../../gcc/cp/parser.c:12516
0x9ee792 cp_convert_range_for(tree_node*, tree_node*, tree_node*, tree_node*,
unsigned int, bool, unsigned short)
        ../../gcc/cp/parser.c:12616
0x9f40b0 cp_parser_range_for
        ../../gcc/cp/parser.c:12498
0xa1ea0a cp_parser_for
        ../../gcc/cp/parser.c:12354
0xa1ea0a cp_parser_iteration_statement
        ../../gcc/cp/parser.c:12902
0xa00ccd cp_parser_statement
        ../../gcc/cp/parser.c:11353
0xa022d8 cp_parser_statement_seq_opt
        ../../gcc/cp/parser.c:11835
0xa023b8 cp_parser_compound_statement
        ../../gcc/cp/parser.c:11785
0xa198b5 cp_parser_function_body
        ../../gcc/cp/parser.c:23060
0xa198b5 cp_parser_ctor_initializer_opt_and_function_body
        ../../gcc/cp/parser.c:23111
0xa1cbed cp_parser_function_definition_after_declarator
        ../../gcc/cp/parser.c:28993
0xa1dbd9 cp_parser_function_definition_from_specifiers_and_declarator
        ../../gcc/cp/parser.c:28909
0xa1dbd9 cp_parser_init_declarator
        ../../gcc/cp/parser.c:20667
0x9fe992 cp_parser_simple_declaration
        ../../gcc/cp/parser.c:13731
0xa27ba2 cp_parser_declaration
        ../../gcc/cp/parser.c:13430
0xa2832a cp_parser_translation_unit
        ../../gcc/cp/parser.c:4731
0xa2832a c_parse_file()
        ../../gcc/cp/parser.c:43972
0xb3d5eb c_common_parse_file()
        ../../gcc/c-family/c-opts.c:1190
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <https://gcc.gnu.org/bugs/> for instructions.

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

* [Bug c++/91867] Internal compiler error in simple for(auto) loop when using -std=c++11 with -fconcepts
       [not found] <bug-91867-4@http.gcc.gnu.org/bugzilla/>
  2020-05-10 23:11 ` [Bug c++/91867] Internal compiler error in simple for(auto) loop when using -std=c++11 with -fconcepts me at myrrec dot space
  2020-05-23  6:08 ` haoxintu at gmail dot com
@ 2021-10-02  7:21 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-10-02  7:21 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #5 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This is a dup of bug 101099.

*** This bug has been marked as a duplicate of bug 101099 ***

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

end of thread, other threads:[~2021-10-02  7:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-91867-4@http.gcc.gnu.org/bugzilla/>
2020-05-10 23:11 ` [Bug c++/91867] Internal compiler error in simple for(auto) loop when using -std=c++11 with -fconcepts me at myrrec dot space
2020-05-23  6:08 ` haoxintu at gmail dot com
2021-10-02  7:21 ` 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).