[clang] [llvm] [AMDGPU][clang][CodeGen][opt] Add late-resolved feature identifying predicates (PR #134016)

Erich Keane via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 06:21:03 PDT 2025


================
@@ -284,6 +284,18 @@ void CodeGenFunction::AddAMDGPUFenceAddressSpaceMMRA(llvm::Instruction *Inst,
   Inst->setMetadata(LLVMContext::MD_mmra, MMRAMetadata::getMD(Ctx, MMRAs));
 }
 
+static Value *GetOrInsertAMDGPUPredicate(CodeGenFunction &CGF, Twine Name) {
+  auto PTy = IntegerType::getInt1Ty(CGF.getLLVMContext());
+
+  auto P = cast<GlobalVariable>(
----------------
erichkeane wrote:

```suggestion
  auto *P = cast<GlobalVariable>(
```
?

https://github.com/llvm/llvm-project/pull/134016


More information about the llvm-commits mailing list