File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
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
- // Compiler.h is required for LLVM_ABI definition.
16
- #include "llvm/Support/Compiler.h"
17
-
18
15
/* Define to enable checks that alter the LLVM C++ ABI */
19
16
#cmakedefine01 LLVM_ENABLE_ABI_BREAKING_CHECKS
20
17
46
43
#endif
47
44
namespace llvm {
48
45
#if LLVM_ENABLE_ABI_BREAKING_CHECKS
49
- LLVM_ABI extern int EnableABIBreakingChecks ;
46
+ extern int EnableABIBreakingChecks ;
50
47
LLVM_HIDDEN_VISIBILITY
51
48
__attribute__((weak )) int * VerifyEnableABIBreakingChecks =
52
49
& EnableABIBreakingChecks ;
53
50
#else
54
- LLVM_ABI extern int DisableABIBreakingChecks ;
51
+ extern int DisableABIBreakingChecks ;
55
52
LLVM_HIDDEN_VISIBILITY
56
53
__attribute__((weak )) int * VerifyDisableABIBreakingChecks =
57
54
& DisableABIBreakingChecks ;
You can’t perform that action at this time.
0 commit comments