diff options
Diffstat (limited to 'llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp')
| -rw-r--r-- | llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp b/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp index d8af35cbf3a8..56fb50cdb09e 100644 --- a/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp +++ b/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp @@ -9,6 +9,7 @@ #include "HexagonInstrInfo.h" #include "HexagonRegisterInfo.h" #include "HexagonSubtarget.h" +#include "llvm/ADT/SetVector.h" #include "llvm/ADT/SmallVector.h" #include "llvm/CodeGen/MachineDominators.h" #include "llvm/CodeGen/MachineFunctionPass.h" @@ -28,12 +29,13 @@ using namespace llvm; -static cl::opt<unsigned> CountThreshold("hexagon-cext-threshold", - cl::init(3), cl::Hidden, cl::ZeroOrMore, - cl::desc("Minimum number of extenders to trigger replacement")); +static cl::opt<unsigned> CountThreshold( + "hexagon-cext-threshold", cl::init(3), cl::Hidden, + cl::desc("Minimum number of extenders to trigger replacement")); -static cl::opt<unsigned> ReplaceLimit("hexagon-cext-limit", cl::init(0), - cl::Hidden, cl::ZeroOrMore, cl::desc("Maximum number of replacements")); +static cl::opt<unsigned> + ReplaceLimit("hexagon-cext-limit", cl::init(0), cl::Hidden, + cl::desc("Maximum number of replacements")); namespace llvm { void initializeHexagonConstExtendersPass(PassRegistry&); |
