[polly] 78a4b9d - [polly] Prefer PointerType::get with LLVMContext over Type (NFC) (#133868)

via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 4 00:18:16 PDT 2025


Author: Mats Jun Larsen
Date: 2025-04-04T07:18:13Z
New Revision: 78a4b9d9b46d59e20cf01d6008ab0080052e9938

URL: https://github.com/llvm/llvm-project/commit/78a4b9d9b46d59e20cf01d6008ab0080052e9938
DIFF: https://github.com/llvm/llvm-project/commit/78a4b9d9b46d59e20cf01d6008ab0080052e9938.diff

LOG: [polly] Prefer PointerType::get with LLVMContext over Type (NFC) (#133868)

Part of #123569

Added: 
    

Modified: 
    polly/lib/CodeGen/LoopGeneratorsGOMP.cpp

Removed: 
    


################################################################################
diff  --git a/polly/lib/CodeGen/LoopGeneratorsGOMP.cpp b/polly/lib/CodeGen/LoopGeneratorsGOMP.cpp
index b98416a92097f..61c153d2ccfa5 100644
--- a/polly/lib/CodeGen/LoopGeneratorsGOMP.cpp
+++ b/polly/lib/CodeGen/LoopGeneratorsGOMP.cpp
@@ -30,13 +30,9 @@ void ParallelLoopGeneratorGOMP::createCallSpawnThreads(Value *SubFn,
   if (!F) {
     GlobalValue::LinkageTypes Linkage = Function::ExternalLinkage;
 
-    Type *Params[] = {PointerType::getUnqual(FunctionType::get(
-                          Builder.getVoidTy(), Builder.getPtrTy(), false)),
-                      Builder.getPtrTy(),
-                      Builder.getInt32Ty(),
-                      LongType,
-                      LongType,
-                      LongType};
+    Type *Params[] = {
+        Builder.getPtrTy(), Builder.getPtrTy(), Builder.getInt32Ty(),
+        LongType,           LongType,           LongType};
 
     FunctionType *Ty = FunctionType::get(Builder.getVoidTy(), Params, false);
     F = Function::Create(Ty, Linkage, Name, M);


        


More information about the llvm-commits mailing list