[llvm-commits] [llvm] r152260 - /llvm/trunk/lib/CodeGen/ScheduleDAGInstrs.h
Andrew Trick
atrick at apple.com
Wed Mar 7 15:01:02 PST 2012
Author: atrick
Date: Wed Mar 7 17:01:02 2012
New Revision: 152260
URL: http://llvm.org/viewvc/llvm-project?rev=152260&view=rev
Log:
misched prep: Remove LLVM_LIBRARY_VISIBILITY from ScheduleDAGInstrs.
Modified:
llvm/trunk/lib/CodeGen/ScheduleDAGInstrs.h
Modified: llvm/trunk/lib/CodeGen/ScheduleDAGInstrs.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/ScheduleDAGInstrs.h?rev=152260&r1=152259&r2=152260&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/ScheduleDAGInstrs.h (original)
+++ llvm/trunk/lib/CodeGen/ScheduleDAGInstrs.h Wed Mar 7 17:01:02 2012
@@ -34,7 +34,7 @@
/// 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 @@
/// 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;
More information about the llvm-commits
mailing list