From 3d983dbf6100edc7807dd339c92c827eeea672d5 Mon Sep 17 00:00:00 2001 From: ian Date: Tue, 8 Jul 2014 20:49:38 +0000 Subject: [PATCH] PR go/61746 compiler: Fix C-style comment parsing. The compiler was incorrectly seeing /*/ as a complete C-style comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212370 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/go/gofrontend/lex.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/go/gofrontend/lex.cc b/gcc/go/gofrontend/lex.cc index 161696347337..3404cedb5f67 100644 --- a/gcc/go/gofrontend/lex.cc +++ b/gcc/go/gofrontend/lex.cc @@ -598,7 +598,7 @@ Lex::next_token() } else if (p[1] == '*') { - this->lineoff_ = p - this->linebuf_; + this->lineoff_ = p + 2 - this->linebuf_; Location location = this->location(); if (!this->skip_c_comment()) return Token::make_invalid_token(location); -- 2.47.2