File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 43
43
#include " llvm/ProfileData/InstrProfCorrelator.h"
44
44
#include " llvm/Support/BuryPointer.h"
45
45
#include " llvm/Support/CommandLine.h"
46
+ #include " llvm/Support/Compiler.h"
46
47
#include " llvm/Support/MemoryBuffer.h"
47
48
#include " llvm/Support/PrettyStackTrace.h"
48
49
#include " llvm/Support/Program.h"
@@ -96,8 +97,6 @@ using namespace llvm;
96
97
#include " llvm/Support/Extension.def"
97
98
98
99
namespace llvm {
99
- extern cl::opt<bool > PrintPipelinePasses;
100
-
101
100
// Experiment to move sanitizers earlier.
102
101
static cl::opt<bool > ClSanitizeOnOptimizerEarlyEP (
103
102
" sanitizer-early-opt-ep" , cl::Optional,
@@ -118,7 +117,8 @@ static cl::opt<PGOOptions::ColdFuncOpt> ClPGOColdFuncAttr(
118
117
clEnumValN(PGOOptions::ColdFuncOpt::OptNone, " optnone" ,
119
118
" Mark cold functions with optnone." )));
120
119
121
- extern cl::opt<InstrProfCorrelator::ProfCorrelatorKind> ProfileCorrelate;
120
+ LLVM_ABI extern cl::opt<InstrProfCorrelator::ProfCorrelatorKind>
121
+ ProfileCorrelate;
122
122
} // namespace llvm
123
123
namespace clang {
124
124
extern llvm::cl::opt<bool > ClSanitizeGuardChecks;
Original file line number Diff line number Diff line change 74
74
#include < memory>
75
75
#include < system_error>
76
76
77
- namespace llvm {
78
- extern cl::opt<bool > PrintPipelinePasses;
79
- } // namespace llvm
80
-
81
77
using namespace Fortran ::frontend;
82
78
83
79
constexpr llvm::StringLiteral timingIdParse = " Parse" ;
Original file line number Diff line number Diff line change @@ -108,8 +108,6 @@ using namespace llvm;
108
108
using namespace sampleprof ;
109
109
110
110
namespace llvm {
111
- extern cl::opt<int > ProfileSummaryCutoffHot;
112
- extern cl::opt<bool > UseContextLessSummary;
113
111
114
112
namespace sampleprof {
115
113
You can’t perform that action at this time.
0 commit comments