[clang] [flang] [llvm] [AMDGPU] Add "lds-buffer-load-insts" attribute for all targets < gfx11 (PR #133055)
Pierre van Houtryve via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 02:53:09 PDT 2025
================
@@ -3368,7 +3368,8 @@ bool AMDGPUInstructionSelector::selectG_INSERT_VECTOR_ELT(
}
bool AMDGPUInstructionSelector::selectBufferLoadLds(MachineInstr &MI) const {
- assert(!AMDGPU::isGFX12Plus(STI));
+ if (!Subtarget->hasLDSBufferLoad())
----------------
Pierre-vh wrote:
Can we add a test to verify lowering fails (`not llc`) instead of crashing if there is no attr?
https://github.com/llvm/llvm-project/pull/133055
More information about the llvm-commits
mailing list