File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2543,6 +2543,12 @@ class BoUpSLP {
2543
2543
2544
2544
Instruction *Inst = nullptr ;
2545
2545
2546
+ // / Opcode of the current instruction in the schedule data.
2547
+ Value *OpValue = nullptr ;
2548
+
2549
+ // / The TreeEntry that this instruction corresponds to.
2550
+ TreeEntry *TE = nullptr ;
2551
+
2546
2552
// / Points to the head in an instruction bundle (and always to this for
2547
2553
// / single instructions).
2548
2554
ScheduleData *FirstInBundle = nullptr ;
@@ -2575,18 +2581,12 @@ class BoUpSLP {
2575
2581
// / Note that this is negative as long as Dependencies is not calculated.
2576
2582
int UnscheduledDeps = InvalidDeps;
2577
2583
2584
+ // / The lane of this node in the TreeEntry.
2585
+ int Lane = -1 ;
2586
+
2578
2587
// / True if this instruction is scheduled (or considered as scheduled in the
2579
2588
// / dry-run).
2580
2589
bool IsScheduled = false ;
2581
-
2582
- // / Opcode of the current instruction in the schedule data.
2583
- Value *OpValue = nullptr ;
2584
-
2585
- // / The TreeEntry that this instruction corresponds to.
2586
- TreeEntry *TE = nullptr ;
2587
-
2588
- // / The lane of this node in the TreeEntry.
2589
- int Lane = -1 ;
2590
2590
};
2591
2591
2592
2592
#ifndef NDEBUG
You can’t perform that action at this time.
0 commit comments