File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 12
12
#ifndef LLVM_ABI_BREAKING_CHECKS_H
13
13
#define LLVM_ABI_BREAKING_CHECKS_H
14
14
15
- #include "llvm/Support/Compiler.h"
16
-
17
15
/* Define to enable checks that alter the LLVM C++ ABI */
18
16
#cmakedefine01 LLVM_ENABLE_ABI_BREAKING_CHECKS
19
17
45
43
#endif
46
44
namespace llvm {
47
45
#if LLVM_ENABLE_ABI_BREAKING_CHECKS
48
- LLVM_ABI extern int EnableABIBreakingChecks ;
46
+ extern int EnableABIBreakingChecks ;
49
47
LLVM_HIDDEN_VISIBILITY
50
48
__attribute__((weak )) int * VerifyEnableABIBreakingChecks =
51
49
& EnableABIBreakingChecks ;
52
50
#else
53
- LLVM_ABI extern int DisableABIBreakingChecks ;
51
+ extern int DisableABIBreakingChecks ;
54
52
LLVM_HIDDEN_VISIBILITY
55
53
__attribute__((weak )) int * VerifyDisableABIBreakingChecks =
56
54
& DisableABIBreakingChecks ;
You can’t perform that action at this time.
0 commit comments