[PR c++/92370] ICE with VC marker
authorNathan Sidwell <nathan@acm.org>
Tue, 5 Nov 2019 16:59:41 +0000 (16:59 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Tue, 5 Nov 2019 16:59:41 +0000 (16:59 +0000)
https://gcc.gnu.org/ml/gcc-patches/2019-11/msg00323.html
cp/
PR c++/92370
* parser.c (cp_parser_error_1): Check EOF and UNKNOWN_LOCATION
when skipping over version control marker.

testsuite/
PR c++/92370
* g++.dg/pr92370.C: New.

From-SVN: r277853

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/pr92370.C [new file with mode: 0644]

index 2bc6037..4d9d567 100644 (file)
@@ -1,3 +1,9 @@
+2019-11-05  Nathan Sidwell  <nathan@acm.org>
+
+       PR c++/92370
+       * parser.c (cp_parser_error_1): Check EOF and UNKNOWN_LOCATION
+       when skipping over version control marker.
+
 2019-11-05  Jakub Jelinek  <jakub@redhat.com>
 
        PR c++/92343
index 3ed282f..bce7161 100644 (file)
@@ -2890,12 +2890,16 @@ cp_parser_error_1 (cp_parser* parser, const char* gmsgid,
          error_at (loc, "version control conflict marker in file");
          expanded_location token_exploc = expand_location (token->location);
          /* Consume tokens until the end of the source line.  */
-         while (1)
+         for (;;)
            {
              cp_lexer_consume_token (parser->lexer);
              cp_token *next = cp_lexer_peek_token (parser->lexer);
-             if (next == NULL)
+             if (next->type == CPP_EOF)
                break;
+             if (next->location == UNKNOWN_LOCATION
+                 || loc == UNKNOWN_LOCATION)
+               break;
+
              expanded_location next_exploc = expand_location (next->location);
              if (next_exploc.file != token_exploc.file)
                break;
index 248d180..37c4469 100644 (file)
@@ -1,3 +1,8 @@
+2019-11-05  Nathan Sidwell  <nathan@acm.org>
+
+       PR c++/92370
+       * g++.dg/pr92370.C: New.
+
 2019-11-04  Martin Sebor  <msebor@redhat.com>
 
        PR middle-end/92341
diff --git a/gcc/testsuite/g++.dg/pr92370.C b/gcc/testsuite/g++.dg/pr92370.C
new file mode 100644 (file)
index 0000000..8f0019a
--- /dev/null
@@ -0,0 +1,3 @@
+// PR 92370 ICE with conlict marker
+
+<<<<<<<>>>>>>> // { dg-error "conflict marker" }