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

Mats Jun Larsen via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 23:27:01 PDT 2025


https://github.com/junlarsen created https://github.com/llvm/llvm-project/pull/133868

Part of #123569

>From a10c8d9f130e7c8f48bd9edd5b9f541fc676164d Mon Sep 17 00:00:00 2001
From: Mats Jun Larsen <mats at jun.codes>
Date: Mon, 31 Mar 2025 23:13:34 +0200
Subject: [PATCH] [polly] Prefer PointerType::get with LLVMContext over Type
 (NFC)

Part of #123569
---
 polly/lib/CodeGen/LoopGeneratorsGOMP.cpp | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

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