[OperandBundles] Remove unncessary constructor
[oota-llvm.git] / include / llvm / IR / InstrTypes.h
index 157cb27cefbb45d9e6920359e5e062d8743f1c54..2a0927266656bc3bc16d29ad18d7892ee4ccbaa2 100644 (file)
@@ -1167,9 +1167,6 @@ template <typename InputTy> class OperandBundleDefT {
   std::vector<InputTy> Inputs;
 
 public:
-  explicit OperandBundleDefT(StringRef Tag, std::vector<InputTy> Inputs)
-      : Tag(Tag), Inputs(std::move(Inputs)) {}
-
   explicit OperandBundleDefT(std::string Tag, std::vector<InputTy> Inputs)
       : Tag(std::move(Tag)), Inputs(std::move(Inputs)) {}