This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH, rs6000] Fix PR target/72804: Poor code gen with -mvsx-timode
On Wed, Aug 16, 2017 at 05:56:09PM -0500, Peter Bergner wrote:
> On 8/16/17 5:30 PM, Segher Boessenkool wrote:
> > On Mon, Aug 14, 2017 at 04:28:25PM -0500, Peter Bergner wrote:
> >> + mr %0,%L1; mr %L0,%1
> >
> > mr %0,%L1\;mr %L0,%1
>
> So you want the ';' escaped and the space removed? Ok.
>From doc/md.texi:
"""
The template may generate multiple assembler instructions. Write the text
for the instructions, with @samp{\;} between them.
"""
(It actually expands to "\n\t", see read-md.c).
Segher