aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/go/gofrontend/lex.cc6
1 files changed, 1 insertions, 5 deletions
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();