From cfb84a52ecaa6d9676ee1921b11877a0746ce687 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 3 Dec 2012 06:57:04 +0000 Subject: compiler: Don't encode non-ASCII characters in identifiers. From-SVN: r194068 --- gcc/go/gofrontend/lex.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'gcc/go') diff --git a/gcc/go/gofrontend/lex.cc b/gcc/go/gofrontend/lex.cc index 804146d..22a1f6e2 100644 --- a/gcc/go/gofrontend/lex.cc +++ b/gcc/go/gofrontend/lex.cc @@ -915,12 +915,8 @@ Lex::gather_identifier() } if (is_invalid && !Lex::is_invalid_identifier(buf)) buf.append("$INVALID$"); + buf.append(p, pnext - p); p = pnext; - char ubuf[50]; - // This assumes that all assemblers can handle an identifier - // with a '$' character. - snprintf(ubuf, sizeof ubuf, "$U%x$", ci); - buf.append(ubuf); } } Location location = this->location(); -- cgit v1.1