[llvm] [AMDGPU][LowerBufferFatPointers] Erase dead ptr(7) intrinsics (PR #160798)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 26 13:03:42 PDT 2025
================
@@ -2562,7 +2562,9 @@ bool AMDGPULowerBufferFatPointers::run(Module &M, const TargetMachine &TM) {
for (Function *F : NeedsPostProcess)
Splitter.processFunction(*F);
for (Function *F : Intrinsics) {
- if (isRemovablePointerIntrinsic(F->getIntrinsicID())) {
+ // use_empty() can also occor with cases like malked load, which will
----------------
shiltian wrote:
ha, I literally thought that was something I don't know. Lol
https://github.com/llvm/llvm-project/pull/160798
More information about the llvm-commits
mailing list