* parser.c (cp_parser_postfix_expression): Adding missing break;.
authorJakub Jelinek <jakub@redhat.com>
Tue, 25 Oct 2016 10:47:47 +0000 (12:47 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 25 Oct 2016 10:47:47 +0000 (12:47 +0200)
From-SVN: r241509

gcc/cp/ChangeLog
gcc/cp/parser.c

index 21c6408..9c876b8 100644 (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.
index f962dfb..53eafa7 100644 (file)
@@ -6655,6 +6655,7 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p,
          default:
            gcc_unreachable ();
          }
+       break;
       }
 
     default: