@@ -1253,10 +1253,10 @@ class VPWidenRecipe : public VPRecipeWithIRFlags, public VPIRMetadata {
12531253 Opcode (I.getOpcode()) {}
12541254
12551255 template <typename IterT>
1256- VPWidenRecipe (unsigned VPDefOpcode, unsigned Opcode,
1257- iterator_range<IterT> Operands, bool NUW, bool NSW, DebugLoc DL)
1258- : VPRecipeWithIRFlags(VPDefOpcode, Operands, WrapFlagsTy(NUW, NSW), DL),
1259- Opcode(Opcode) {}
1256+ VPWidenRecipe (unsigned VPDefOpcode, unsigned Opcode,
1257+ iterator_range<IterT> Operands, bool NUW, bool NSW, DebugLoc DL)
1258+ : VPRecipeWithIRFlags(VPDefOpcode, Operands, WrapFlagsTy(NUW, NSW), DL),
1259+ Opcode(Opcode) {}
12601260
12611261public:
12621262 template <typename IterT>
@@ -1312,15 +1312,16 @@ class VPWidenCastRecipe : public VPRecipeWithIRFlags, public VPIRMetadata {
13121312 " opcode of underlying cast doesn't match" );
13131313 }
13141314
1315- VPWidenCastRecipe (Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy, DebugLoc DL = {})
1315+ VPWidenCastRecipe (Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy,
1316+ DebugLoc DL = {})
13161317 : VPRecipeWithIRFlags(VPDef::VPWidenCastSC, Op, DL), VPIRMetadata(),
13171318 Opcode(Opcode), ResultTy(ResultTy) {}
13181319
13191320 VPWidenCastRecipe (Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy,
13201321 bool IsNonNeg, DebugLoc DL = {})
1321- : VPRecipeWithIRFlags(VPDef::VPWidenCastSC, Op, NonNegFlagsTy(IsNonNeg),
1322- DL),
1323- Opcode(Opcode), ResultTy(ResultTy) {}
1322+ : VPRecipeWithIRFlags(VPDef::VPWidenCastSC, Op, NonNegFlagsTy(IsNonNeg),
1323+ DL),
1324+ Opcode(Opcode), ResultTy(ResultTy) {}
13241325
13251326 ~VPWidenCastRecipe () override = default ;
13261327
0 commit comments