rs6000: Use brace blocks in define_insn
authorSegher Boessenkool <segher@kernel.crashing.org>
Thu, 22 Feb 2018 01:08:02 +0000 (02:08 +0100)
committerSegher Boessenkool <segher@gcc.gnu.org>
Thu, 22 Feb 2018 01:08:02 +0000 (02:08 +0100)
commit6c3323139491780d1dc6d9c938d145045788aca4
treea47241a23319fb46789dfc881f7bf8f9611e8a8d
parent78a85122c054bae870c831079e7127eeff2eaf97
rs6000: Use brace blocks in define_insn

This patch changes the remaining cases in our machine description files
to use brace blocks instead of double-quoted strings as the output
control string.  This increases readability by making the blocks look
more like normal C code, mostly because backslash quoting is no longer
needed.  It also removes such quoting where it was still there (usually
harmless but always confusing). and it writes "\n\t" as "\;" in one
place where we didn't already.

* config/rs6000/altivec.md: Write output control strings as braced
blocks instead of double-quoted strings.
* config/rs6000/darwin.md: Ditto.
* config/rs6000/rs6000.md: Ditto.
* config/rs6000/vector.md: Ditto.
* config/rs6000/vsx.md: Ditto.

From-SVN: r257889
gcc/ChangeLog
gcc/config/rs6000/altivec.md
gcc/config/rs6000/darwin.md
gcc/config/rs6000/rs6000.md
gcc/config/rs6000/vector.md
gcc/config/rs6000/vsx.md