diff options
author | Fangrui Song <i@maskray.me> | 2022-06-03 22:04:57 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-06-03 22:04:57 -0700 |
commit | 72f9c69421fce893ac9b4ca9144b064cddc79cd8 (patch) | |
tree | b3371157f5e117d7a53f165a97819246a8e5c0fd /bolt/lib/Utils/CommandLineOpts.cpp | |
parent | 734c2234458c2f29b9696d8c3a7df9d32cc1766a (diff) | |
download | llvm-72f9c69421fce893ac9b4ca9144b064cddc79cd8.zip llvm-72f9c69421fce893ac9b4ca9144b064cddc79cd8.tar.gz llvm-72f9c69421fce893ac9b4ca9144b064cddc79cd8.tar.bz2 |
[Hexagon][bolt] Remove unneeded cl::ZeroOrMore for cl::opt options. NFC
Similar to 557efc9a8b68628c2c944678c6471dac30ed9e8e
Diffstat (limited to 'bolt/lib/Utils/CommandLineOpts.cpp')
-rw-r--r-- | bolt/lib/Utils/CommandLineOpts.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bolt/lib/Utils/CommandLineOpts.cpp b/bolt/lib/Utils/CommandLineOpts.cpp index cdf75ac..7f968aa 100644 --- a/bolt/lib/Utils/CommandLineOpts.cpp +++ b/bolt/lib/Utils/CommandLineOpts.cpp @@ -77,7 +77,6 @@ EnableBAT("enable-bat", cl::cat(BoltCategory)); cl::opt<bool> RemoveSymtab("remove-symtab", cl::desc("Remove .symtab section"), - cl::init(false), cl::ZeroOrMore, cl::cat(BoltCategory)); cl::opt<unsigned> |