File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
llvm/include/llvm/CodeGen Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 9999
100100namespace llvm {
101101namespace impl_detail {
102+ // FIXME: Remove these declarations once RegisterClassInfo is queryable as an
103+ // analysis.
102104class MachineSchedulerImpl ;
103105class PostMachineSchedulerImpl ;
104106} // namespace impl_detail
@@ -1390,6 +1392,8 @@ createCopyConstrainDAGMutation(const TargetInstrInfo *TII,
13901392 const TargetRegisterInfo *TRI);
13911393
13921394class MachineSchedulerPass : public PassInfoMixin <MachineSchedulerPass> {
1395+ // FIXME: Remove this member once RegisterClassInfo is queryable as an
1396+ // analysis.
13931397 std::unique_ptr<impl_detail::MachineSchedulerImpl> Impl;
13941398 const TargetMachine *TM;
13951399
@@ -1403,6 +1407,8 @@ class MachineSchedulerPass : public PassInfoMixin<MachineSchedulerPass> {
14031407
14041408class PostMachineSchedulerPass
14051409 : public PassInfoMixin<PostMachineSchedulerPass> {
1410+ // FIXME: Remove this member once RegisterClassInfo is queryable as an
1411+ // analysis.
14061412 std::unique_ptr<impl_detail::PostMachineSchedulerImpl> Impl;
14071413 const TargetMachine *TM;
14081414
You can’t perform that action at this time.
0 commit comments