From: Tom Stellard Date: Thu, 6 Jun 2013 00:05:43 +0000 (-0700) Subject: clover: Don't segfault when compiling a program with no kernel X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a925cc5504575c22dbb7d29842d7fc5babcb5c7;p=mesa.git clover: Don't segfault when compiling a program with no kernel --- diff --git a/src/gallium/state_trackers/clover/llvm/invocation.cpp b/src/gallium/state_trackers/clover/llvm/invocation.cpp index 90bc53b238c..dae61f7fa7d 100644 --- a/src/gallium/state_trackers/clover/llvm/invocation.cpp +++ b/src/gallium/state_trackers/clover/llvm/invocation.cpp @@ -211,6 +211,13 @@ namespace { find_kernels(llvm::Module *mod, std::vector &kernels) { const llvm::NamedMDNode *kernel_node = mod->getNamedMetadata("opencl.kernels"); + // This means there are no kernels in the program. The spec does not + // require that we return an error here, but there will be an error if + // the user tries to pass this program to a clCreateKernel() call. + if (!kernel_node) { + return; + } + for (unsigned i = 0; i < kernel_node->getNumOperands(); ++i) { kernels.push_back(llvm::dyn_cast( kernel_node->getOperand(i)->getOperand(0)));