From: Ian Lance Taylor Date: Sat, 11 Apr 2015 00:50:26 +0000 (+0000) Subject: compiler: discard carriage returns in raw string literals X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=055da6a8dfc48dae017dd17bdabaeabf57bec3d7;p=gcc.git compiler: discard carriage returns in raw string literals Fixes golang/go#10407. From-SVN: r222001 --- diff --git a/gcc/go/gofrontend/lex.cc b/gcc/go/gofrontend/lex.cc index 3404cedb5f6..aa7071dbe78 100644 --- a/gcc/go/gofrontend/lex.cc +++ b/gcc/go/gofrontend/lex.cc @@ -1440,7 +1440,10 @@ Lex::gather_raw_string() bool issued_error; this->lineoff_ = p - this->linebuf_; p = this->advance_one_utf8_char(p, &c, &issued_error); - Lex::append_char(c, true, &value, loc); + // "Carriage return characters ('\r') inside raw string literals + // are discarded from the raw string value." + if (c != '\r') + Lex::append_char(c, true, &value, loc); } this->lineoff_ = p - this->linebuf_; if (!this->require_line())