Commit bc352be1 by Jakub Jelinek Committed by Jakub Jelinek

* parser.c (cp_parser_postfix_expression): Adding missing break;.

From-SVN: r241509
parent ad6922b0
2016-10-25 Jakub Jelinek <jakub@redhat.com> 2016-10-25 Jakub Jelinek <jakub@redhat.com>
* parser.c (cp_parser_postfix_expression): Adding missing break;.
* cp-tree.h (finish_builtin_launder): Declare. * cp-tree.h (finish_builtin_launder): Declare.
* parser.c (cp_parser_postfix_expression): Handle RID_BUILTIN_LAUNDER. * parser.c (cp_parser_postfix_expression): Handle RID_BUILTIN_LAUNDER.
* semantics.c (finish_builtin_launder): New function. * semantics.c (finish_builtin_launder): New function.
......
...@@ -6655,6 +6655,7 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p, ...@@ -6655,6 +6655,7 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
default: default:
gcc_unreachable (); gcc_unreachable ();
} }
break;
} }
default: default:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment