forked from OSchip/llvm-project
[NFC] Declare the member data of class PostGenericScheduler as "protected" instead of "private"
Some target might try to subclass the PostGenericScheduler to custom the scheduling strategy. We need to declare the member data of PostGenericScheduler as "protected", which acts the same as "GenericScheduler". Differential Revision: https://reviews.llvm.org/D58949 llvm-svn: 355475
This commit is contained in:
parent
112ea336c3
commit
6a8aa0e898
|
@ -1014,6 +1014,7 @@ protected:
|
|||
/// Callbacks from ScheduleDAGMI:
|
||||
/// initPolicy -> initialize(DAG) -> registerRoots -> pickNode ...
|
||||
class PostGenericScheduler : public GenericSchedulerBase {
|
||||
protected:
|
||||
ScheduleDAGMI *DAG;
|
||||
SchedBoundary Top;
|
||||
SmallVector<SUnit*, 8> BotRoots;
|
||||
|
|
Loading…
Reference in New Issue