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 47d80ec commit d0cb5b2Copy full SHA for d0cb5b2
llvm/include/llvm-c/ExecutionEngine.h
@@ -33,8 +33,16 @@ LLVM_C_EXTERN_C_BEGIN
33
* @{
34
*/
35
36
-void LLVMLinkInMCJIT(void);
37
-void LLVMLinkInInterpreter(void);
+/**
+ * Empty function used to force the linker to link MCJIT.
38
+ * Hidden because it does not apply to the dylib interface.
39
+ */
40
+LLVM_ATTRIBUTE_VISIBILITY_HIDDEN void LLVMLinkInMCJIT(void);
41
42
+ * Empty function used to force the linker to link the LLVM interpreter.
43
44
45
+LLVM_ATTRIBUTE_VISIBILITY_HIDDEN void LLVMLinkInInterpreter(void);
46
47
typedef struct LLVMOpaqueGenericValue *LLVMGenericValueRef;
48
typedef struct LLVMOpaqueExecutionEngine *LLVMExecutionEngineRef;
0 commit comments