Skip to content

Commit 3ad6eca

Browse files
authored
Merge branch 'halide:main' into fix-shuffle-bug
2 parents fbe3e55 + a1096c1 commit 3ad6eca

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ option(THREADS_PREFER_PTHREAD_FLAG "When enabled, prefer to use the -pthread fla
196196
find_package(Threads REQUIRED)
197197

198198
## LLVM
199-
find_package(Halide_LLVM 18...20 REQUIRED
199+
find_package(Halide_LLVM 18...99 REQUIRED # Use 99 to fake a minimum-only constraint
200200
COMPONENTS WebAssembly X86
201201
OPTIONAL_COMPONENTS AArch64 ARM Hexagon NVPTX PowerPC RISCV)
202202

src/CodeGen_LLVM.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ Value *CodeGen_LLVM::register_destructor(llvm::Function *destructor_fn, Value *o
748748
IRBuilderBase::InsertPoint here = builder->saveIP();
749749
BasicBlock *dtors = get_destructor_block();
750750

751-
builder->SetInsertPoint(dtors->getFirstNonPHI());
751+
builder->SetInsertPoint(dtors->getFirstNonPHIIt());
752752

753753
PHINode *error_code = dyn_cast<PHINode>(dtors->begin());
754754
internal_assert(error_code) << "The destructor block is supposed to start with a phi node\n";

src/CodeGen_PTX_Dev.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ void CodeGen_PTX_Dev::add_kernel(Stmt stmt,
156156
}
157157
}
158158

159+
function->setCallingConv(llvm::CallingConv::PTX_Kernel);
160+
159161
// Make the initial basic block
160162
entry_block = BasicBlock::Create(*context, "entry", function);
161163
builder->SetInsertPoint(entry_block);

0 commit comments

Comments
 (0)