Skip to content

Commit 86923cf

Browse files
committed
Reverted back to explanatory comments
1 parent f0affb0 commit 86923cf

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

llvm/include/llvm-c/ExecutionEngine.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#include "llvm-c/Target.h"
2424
#include "llvm-c/TargetMachine.h"
2525
#include "llvm-c/Types.h"
26-
#include "llvm/Support/Compiler.h"
2726

2827
LLVM_C_EXTERN_C_BEGIN
2928

@@ -36,14 +35,14 @@ LLVM_C_EXTERN_C_BEGIN
3635

3736
/**
3837
* Empty function used to force the linker to link MCJIT.
39-
* Hidden because it does not apply to the dylib interface.
38+
* Has no effect when called on a pre-built library (dylib interface).
4039
*/
41-
LLVM_ATTRIBUTE_VISIBILITY_HIDDEN void LLVMLinkInMCJIT(void);
40+
void LLVMLinkInMCJIT(void);
4241
/**
4342
* Empty function used to force the linker to link the LLVM interpreter.
44-
* Hidden because it does not apply to the dylib interface.
43+
* Has no effect when called on a pre-built library (dylib interface).
4544
*/
46-
LLVM_ATTRIBUTE_VISIBILITY_HIDDEN void LLVMLinkInInterpreter(void);
45+
void LLVMLinkInInterpreter(void);
4746

4847
typedef struct LLVMOpaqueGenericValue *LLVMGenericValueRef;
4948
typedef struct LLVMOpaqueExecutionEngine *LLVMExecutionEngineRef;

0 commit comments

Comments
 (0)