From 62adf6fc2d70d9270b4213218e622c15504966be Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Thu, 26 Apr 2018 22:34:38 -0700 Subject: [PATCH] cmd/internal/obj: convert unicode C to ASCII C Hex before: d0 a1 Hex after: 43 Not sure where that came from. Change-Id: I189e7e21f8faf480ba72846b956a149976f720f8 Reviewed-on: https://go-review.googlesource.com/109777 Reviewed-by: Brad Fitzpatrick --- src/cmd/internal/obj/x86/asm6.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/internal/obj/x86/asm6.go b/src/cmd/internal/obj/x86/asm6.go index f486aeb3ec..796ec9a8f5 100644 --- a/src/cmd/internal/obj/x86/asm6.go +++ b/src/cmd/internal/obj/x86/asm6.go @@ -3785,7 +3785,7 @@ func (ab *AsmBuf) doasm(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog) { ab.Put1(byte(pre)) } - // Сhecks to warn about instruction/arguments combinations that + // Checks to warn about instruction/arguments combinations that // will unconditionally trigger illegal instruction trap (#UD). switch p.As { case AVGATHERDPD, -- 2.48.1