[PATCH] D109573: [AArch64] NFC: Use 'asm' in SIMDScalarCPY
Cullen Rhodes via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 13 03:08:37 PDT 2021
c-rhodes 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,
----------------
dmgreen wrote:
> Would it be better for this to always be "mov" and remove the parameter?
> Would it be better for this to always be "mov" and remove the parameter?
I think being able to search for the mnemonic in AArch64InstrInfo.td might be useful
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