diff options
author | Andrew Trick <atrick@apple.com> | 2012-03-07 23:01:02 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-03-07 23:01:02 +0000 |
commit | d743f71e82ddf96dbf9f7088881736159581507f (patch) | |
tree | 51ccdb7dca8aa1dca3e2d6938f058469a7e13379 | |
parent | 9b9dea5d07bd024737327c36d23cb6f47d793bca (diff) | |
download | bcm5719-llvm-d743f71e82ddf96dbf9f7088881736159581507f.tar.gz bcm5719-llvm-d743f71e82ddf96dbf9f7088881736159581507f.zip |
misched prep: Remove LLVM_LIBRARY_VISIBILITY from ScheduleDAGInstrs.
llvm-svn: 152260
-rw-r--r-- | llvm/lib/CodeGen/ScheduleDAGInstrs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAGInstrs.h b/llvm/lib/CodeGen/ScheduleDAGInstrs.h index 27fb11c2fca..5b1cbaa5ebb 100644 --- a/llvm/lib/CodeGen/ScheduleDAGInstrs.h +++ b/llvm/lib/CodeGen/ScheduleDAGInstrs.h @@ -34,7 +34,7 @@ namespace llvm { /// For example, loop induction variable increments should be /// scheduled as soon as possible after the variable's last use. /// - class LLVM_LIBRARY_VISIBILITY LoopDependencies { + class LoopDependencies { const MachineLoopInfo &MLI; const MachineDominatorTree &MDT; @@ -164,7 +164,7 @@ namespace llvm { /// ScheduleDAGInstrs - A ScheduleDAG subclass for scheduling lists of /// MachineInstrs. - class LLVM_LIBRARY_VISIBILITY ScheduleDAGInstrs : public ScheduleDAG { + class ScheduleDAGInstrs : public ScheduleDAG { protected: const MachineLoopInfo &MLI; const MachineDominatorTree &MDT; |