[llvm] [AArch64][GISel] Support SVE with 128-bit min-size for G_LOAD and G_STORE (PR #92130)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Tue May 21 15:02:29 PDT 2024
================
@@ -2951,10 +2981,19 @@ bool AArch64InstructionSelector::select(MachineInstr &I) {
// instruction with an updated opcode, or a new instruction.
auto SelectLoadStoreAddressingMode = [&]() -> MachineInstr * {
bool IsStore = isa<GStore>(I);
- const unsigned NewOpc =
- selectLoadStoreUIOp(I.getOpcode(), RB.getID(), MemSizeInBits);
+ unsigned NewOpc;
+ if (ValTy.isScalableVector()) {
----------------
davemgreen wrote:
LLVM prefers removing brackets from single statements.
https://github.com/llvm/llvm-project/pull/92130
More information about the llvm-commits
mailing list