This is the mail archive of the
gcc-cvs@gcc.gnu.org
mailing list for the GCC project.
r249444 - in /trunk/gcc: ChangeLog config/aarch...
- From: wilco at gcc dot gnu dot org
- To: gcc-cvs at gcc dot gnu dot org
- Date: Wed, 21 Jun 2017 10:48:52 -0000
- Subject: r249444 - in /trunk/gcc: ChangeLog config/aarch...
Author: wilco
Date: Wed Jun 21 10:48:51 2017
New Revision: 249444
URL: https://gcc.gnu.org/viewcvs?rev=249444&root=gcc&view=rev
Log:
Emit SIMD moves as mov
SIMD moves are currently emitted as ORR. Change this to use the MOV
pseudo instruction just like integer moves (the ARM-ARM states MOV is the
preferred disassembly), improving readability of -S output.
gcc/
* config/aarch64/aarch64.md (movti_aarch64):
Emit mov rather than orr.
(movtf_aarch64): Likewise.
* config/aarch64/aarch64-simd.md (aarch64_simd_mov):
Emit mov rather than orr.
Modified:
trunk/gcc/ChangeLog
trunk/gcc/config/aarch64/aarch64-simd.md
trunk/gcc/config/aarch64/aarch64.md