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

From-SVN: r241509
This commit is contained in:
Jakub Jelinek 2016-10-25 12:47:47 +02:00 committed by Jakub Jelinek
parent ad6922b03b
commit bc352be13c
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2016-10-25 Jakub Jelinek <jakub@redhat.com>
* parser.c (cp_parser_postfix_expression): Adding missing break;.
* cp-tree.h (finish_builtin_launder): Declare.
* parser.c (cp_parser_postfix_expression): Handle RID_BUILTIN_LAUNDER.
* semantics.c (finish_builtin_launder): New function.

View file

@ -6655,6 +6655,7 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
default:
gcc_unreachable ();
}
break;
}
default: