diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-28 22:17:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-28 22:17:39 +0000 |
commit | e097e6f7c7cd38cee8b8ee40cfa21a131f28ab34 (patch) | |
tree | da4302a1acb0eb1ea217521c216d56b06595a9c1 /llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp | |
parent | 4a4c7fe7fadc61781f4e38e9fe2339a16c4e9013 (diff) | |
download | bcm5719-llvm-e097e6f7c7cd38cee8b8ee40cfa21a131f28ab34.tar.gz bcm5719-llvm-e097e6f7c7cd38cee8b8ee40cfa21a131f28ab34.zip |
Shave another 27K off libllvmgcc.dylib with visibility hidden
llvm-svn: 28973
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp index ad8ed5aaf97..a0858d99905 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp @@ -26,6 +26,7 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/Visibility.h" #include "llvm/ADT/Statistic.h" #include <climits> #include <iostream> @@ -42,7 +43,7 @@ namespace { /// ScheduleDAGList - The actual list scheduler implementation. This supports /// top-down scheduling. /// -class ScheduleDAGList : public ScheduleDAG { +class VISIBILITY_HIDDEN ScheduleDAGList : public ScheduleDAG { private: /// AvailableQueue - The priority queue to use for the available SUnits. /// |