Files
ports/devel/ispc/files/patch-src_llvmutil.cpp
T
2020-01-27 02:49:13 +00:00

14 lines
412 B
C++

ISPC devs insist on using dump() functions which LLVM devs consider a debug functionality, and it isn't available in the LLVM packages.
--- src/llvmutil.cpp.orig 2020-01-25 02:15:35 UTC
+++ src/llvmutil.cpp
@@ -1344,7 +1344,7 @@ static void lDumpValue(llvm::Value *v, std::set<llvm::
return;
fprintf(stderr, " ");
- v->dump();
+ //v->dump();
done.insert(v);
if (inst == NULL)