[PATCH] D109573: [AArch64] NFC: Use 'asm' in SIMDScalarCPY

Dave Green via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 11 10:59:08 PDT 2021


dmgreen added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64InstrFormats.td:7664
 class BaseSIMDScalarCPY<RegisterClass regtype, RegisterOperand vectype,
-                        string kind, Operand idxtype>
-  : I<(outs regtype:$dst), (ins vectype:$src, idxtype:$idx), "mov",
+                        string asm, string kind, Operand idxtype>
+  : I<(outs regtype:$dst), (ins vectype:$src, idxtype:$idx), asm,
----------------
Would it be better for this to always be "mov" and remove the parameter?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D109573/new/

https://reviews.llvm.org/D109573



More information about the llvm-commits mailing list