Re: Go patch committed: Avoid non-ASCII characters in asm identifiers

2016-08-05 Thread Ian Lance Taylor
On Fri, Aug 5, 2016 at 2:13 PM, Joseph Myers wrote: > On Fri, 5 Aug 2016, Ian Lance Taylor wrote: > >> PR 72812 points out that Go can generate non-ASCII characters in >> assembly code. This is a consequence of the fact that Go permits >> identifiers to contain non-ASCII Unicode code points. The

Re: Go patch committed: Avoid non-ASCII characters in asm identifiers

2016-08-05 Thread Joseph Myers
On Fri, 5 Aug 2016, Ian Lance Taylor wrote: > PR 72812 points out that Go can generate non-ASCII characters in > assembly code. This is a consequence of the fact that Go permits > identifiers to contain non-ASCII Unicode code points. The GNU > assembler doesn't seem to mind, but the Solaris asse

Go patch committed: Avoid non-ASCII characters in asm identifiers

2016-08-05 Thread Ian Lance Taylor
PR 72812 points out that Go can generate non-ASCII characters in assembly code. This is a consequence of the fact that Go permits identifiers to contain non-ASCII Unicode code points. The GNU assembler doesn't seem to mind, but the Solaris assembler does. This patch changes the GCC Go interface