[llvm] [AMDGPU] Use mangling-agnostic form of IRBuilder::CreateIntrinsic. NFC. (PR #87638)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 17 04:05:23 PDT 2024
================
@@ -591,23 +591,23 @@ std::pair<Value *, Value *> AMDGPUAtomicOptimizerImpl::buildScanIteratively(
// Use llvm.cttz instrinsic to find the lowest remaining active lane.
auto *FF1 =
- B.CreateIntrinsic(Intrinsic::cttz, WaveTy, {ActiveBits, B.getTrue()});
+ B.CreateIntrinsic(WaveTy, Intrinsic::cttz, {ActiveBits, B.getTrue()});
----------------
arsenm wrote:
No plus here
https://github.com/llvm/llvm-project/pull/87638
More information about the llvm-commits
mailing list