@@ -580,7 +580,7 @@ class VPBlockBase {
580
580
581
581
// / The method which generates the output IR that correspond to this
582
582
// / VPBlockBase, thereby "executing" the VPlan.
583
- virtual void execute (struct VPTransformState *State) = 0;
583
+ virtual void execute (VPTransformState *State) = 0;
584
584
585
585
// / Delete all blocks reachable from a given VPBlockBase, inclusive.
586
586
static void deleteCFG (VPBlockBase *Entry);
@@ -680,7 +680,7 @@ class VPRecipeBase : public ilist_node_with_parent<VPRecipeBase, VPBasicBlock>,
680
680
681
681
// / The method which generates the output IR instructions that correspond to
682
682
// / this VPRecipe, thereby "executing" the VPlan.
683
- virtual void execute (struct VPTransformState &State) = 0;
683
+ virtual void execute (VPTransformState &State) = 0;
684
684
685
685
// / Insert an unlinked recipe into a basic block immediately before
686
686
// / the specified recipe.
@@ -2084,7 +2084,7 @@ class VPBasicBlock : public VPBlockBase {
2084
2084
2085
2085
// / The method which generates the output IR instructions that correspond to
2086
2086
// / this VPBasicBlock, thereby "executing" the VPlan.
2087
- void execute (struct VPTransformState *State) override ;
2087
+ void execute (VPTransformState *State) override ;
2088
2088
2089
2089
// / Return the position of the first non-phi node recipe in the block.
2090
2090
iterator getFirstNonPhi ();
@@ -2217,7 +2217,7 @@ class VPRegionBlock : public VPBlockBase {
2217
2217
2218
2218
// / The method which generates the output IR instructions that correspond to
2219
2219
// / this VPRegionBlock, thereby "executing" the VPlan.
2220
- void execute (struct VPTransformState *State) override ;
2220
+ void execute (VPTransformState *State) override ;
2221
2221
2222
2222
void dropAllReferences (VPValue *NewValue) override ;
2223
2223
@@ -2566,7 +2566,7 @@ class VPlan {
2566
2566
bool IsEpilogueVectorization);
2567
2567
2568
2568
// / Generate the IR code for this VPlan.
2569
- void execute (struct VPTransformState *State);
2569
+ void execute (VPTransformState *State);
2570
2570
2571
2571
VPBlockBase *getEntry () { return Entry; }
2572
2572
const VPBlockBase *getEntry () const { return Entry; }
0 commit comments