Skip to content

[BOLT][NFC] Hide pass print options #67718

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions bolt/lib/Rewrite/BinaryPassManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static cl::opt<bool>

static cl::opt<bool> PrintJTFootprintReduction(
"print-after-jt-footprint-reduction",
cl::desc("print function after jt-footprint-reduction pass"),
cl::desc("print function after jt-footprint-reduction pass"), cl::Hidden,
cl::cat(BoltOptCategory));

static cl::opt<bool>
Expand Down Expand Up @@ -160,7 +160,7 @@ static cl::opt<bool>

static cl::opt<bool> PrintRetpolineInsertion(
"print-retpoline-insertion",
cl::desc("print functions after retpoline insertion pass"),
cl::desc("print functions after retpoline insertion pass"), cl::Hidden,
cl::cat(BoltCategory));

static cl::opt<bool> PrintSCTC(
Expand All @@ -179,21 +179,21 @@ static cl::opt<bool>

static cl::opt<bool>
PrintStoke("print-stoke", cl::desc("print functions after stoke analysis"),
cl::cat(BoltOptCategory));
cl::Hidden, cl::cat(BoltOptCategory));

static cl::opt<bool>
PrintFixRelaxations("print-fix-relaxations",
cl::desc("print functions after fix relaxations pass"),
cl::cat(BoltOptCategory));
cl::Hidden, cl::cat(BoltOptCategory));

static cl::opt<bool>
PrintFixRISCVCalls("print-fix-riscv-calls",
cl::desc("print functions after fix RISCV calls pass"),
cl::cat(BoltOptCategory));
cl::Hidden, cl::cat(BoltOptCategory));

static cl::opt<bool> PrintVeneerElimination(
"print-veneer-elimination",
cl::desc("print functions after veneer elimination pass"),
cl::desc("print functions after veneer elimination pass"), cl::Hidden,
cl::cat(BoltOptCategory));

static cl::opt<bool>
Expand Down