We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100d129 commit 49000f3Copy full SHA for 49000f3
llvm/lib/IR/LLVMContextImpl.cpp
@@ -34,9 +34,15 @@
34
using namespace llvm;
35
36
#ifndef INTEL_SYCL_OPAQUEPOINTER_READY
37
+#if ENABLE_OPAQUE_POINTERS
38
+static cl::opt<bool> OpaquePointersCL("opaque-pointers",
39
+ cl::desc("Use opaque pointers"),
40
+ cl::init(true));
41
+#else // ENABLE_OPAQUE_POINTERS
42
static cl::opt<bool> OpaquePointersCL("opaque-pointers",
43
cl::desc("Use opaque pointers"),
44
cl::init(false));
45
+#endif // ENABLE_OPAQUE_POINTERS
46
#endif // INTEL_SYCL_OPAQUEPOINTER_READY
47
48
LLVMContextImpl::LLVMContextImpl(LLVMContext &C)
0 commit comments