diff options
Diffstat (limited to 'bolt/lib/Utils/CommandLineOpts.cpp')
| -rw-r--r-- | bolt/lib/Utils/CommandLineOpts.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bolt/lib/Utils/CommandLineOpts.cpp b/bolt/lib/Utils/CommandLineOpts.cpp index 41c89bc8aeba..41de30f3f566 100644 --- a/bolt/lib/Utils/CommandLineOpts.cpp +++ b/bolt/lib/Utils/CommandLineOpts.cpp @@ -128,6 +128,14 @@ cl::opt<bool> cl::desc("instrument code to generate accurate profile data"), cl::cat(BoltOptCategory)); +cl::opt<bool> Lite("lite", cl::desc("skip processing of cold functions"), + cl::cat(BoltCategory)); + +cl::opt<bool> + MatchProfileWithFunctionHash("match-profile-with-function-hash", + cl::desc("Match profile with function hash"), + cl::Hidden, cl::cat(BoltCategory)); + cl::opt<std::string> OutputFilename("o", cl::desc("<output file>"), |
