Skip to content

Commit

Permalink
add ZeroORMore option oto debug cl::opt
Browse files Browse the repository at this point in the history
  • Loading branch information
Robertorosmaninho committed Sep 29, 2023
1 parent 6fcdc56 commit f06339f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/llvm-kompile-codegen/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ cl::opt<std::string> DecisionTree(
cl::opt<std::string> Directory(
cl::Positional, cl::desc("<dir>"), cl::Required, cl::cat(CodegenCat));

cl::opt<bool>
Debug("debug", cl::desc("Enable debug information"), cl::cat(CodegenCat));
cl::opt<bool> Debug(
"debug", cl::desc("Enable debug information"), cl::ZeroOrMore,
cl::cat(CodegenCat));

cl::opt<bool> NoOptimize(
"no-optimize",
Expand Down

0 comments on commit f06339f

Please sign in to comment.