@@ -1253,10 +1253,10 @@ class VPWidenRecipe : public VPRecipeWithIRFlags, public VPIRMetadata {
1253
1253
Opcode (I.getOpcode()) {}
1254
1254
1255
1255
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) {}
1260
1260
1261
1261
public:
1262
1262
template <typename IterT>
@@ -1312,15 +1312,16 @@ class VPWidenCastRecipe : public VPRecipeWithIRFlags, public VPIRMetadata {
1312
1312
" opcode of underlying cast doesn't match" );
1313
1313
}
1314
1314
1315
- VPWidenCastRecipe (Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy, DebugLoc DL = {})
1315
+ VPWidenCastRecipe (Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy,
1316
+ DebugLoc DL = {})
1316
1317
: VPRecipeWithIRFlags(VPDef::VPWidenCastSC, Op, DL), VPIRMetadata(),
1317
1318
Opcode(Opcode), ResultTy(ResultTy) {}
1318
1319
1319
1320
VPWidenCastRecipe (Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy,
1320
1321
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) {}
1324
1325
1325
1326
~VPWidenCastRecipe () override = default ;
1326
1327
0 commit comments