diff options
author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2015-10-06 18:29:36 +0000 |
---|---|---|
committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2015-10-06 18:29:36 +0000 |
commit | 8d2b2cfa2936a2aedfef776c73485ce30f5dea74 (patch) | |
tree | da33da596873a5ee4b5071f1c2e97e73b3b83a2b | |
parent | 9d1f05aef8a0e39105e39e5ac4be4bfee03a1a52 (diff) | |
download | llvm-8d2b2cfa2936a2aedfef776c73485ce30f5dea74.zip llvm-8d2b2cfa2936a2aedfef776c73485ce30f5dea74.tar.gz llvm-8d2b2cfa2936a2aedfef776c73485ce30f5dea74.tar.bz2 |
[Hexagon] Remove ZeroOrMore from option flags
llvm-svn: 249438
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp b/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp index f7b6940..5b92bfb 100644 --- a/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp +++ b/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp @@ -83,17 +83,16 @@ using namespace llvm; -static cl::opt<bool> EnableHexagonBP("enable-hexagon-br-prob", cl::Hidden, - cl::init(false), cl::ZeroOrMore, cl::desc("Enable branch probability info")); - namespace llvm { FunctionPass *createHexagonEarlyIfConversion(); void initializeHexagonEarlyIfConversionPass(PassRegistry& Registry); } namespace { + cl::opt<bool> EnableHexagonBP("enable-hexagon-br-prob", cl::Hidden, + cl::init(false), cl::desc("Enable branch probability info")); cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden, - cl::ZeroOrMore, cl::desc("Size limit in Hexagon early if-conversion")); + cl::desc("Size limit in Hexagon early if-conversion")); struct PrintMB { PrintMB(const MachineBasicBlock *B) : MB(B) {} |