diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-28 23:17:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-28 23:17:24 +0000 |
commit | 9525528a7dc5462b6374d38c81ba5c07b11741fe (patch) | |
tree | 21af300b05123d1f41b059ac59b39f0b02183861 /lib/CodeGen/RegAllocLocal.cpp | |
parent | 9ef7e06ccef062dfa5df516913b12b7c3ca17805 (diff) |
Use hidden visibility to make symbols in an anonymous namespace get
dropped. This shrinks libllvmgcc.dylib another 67K
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28975 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocLocal.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocLocal.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocLocal.cpp b/lib/CodeGen/RegAllocLocal.cpp index 55d412960c..891ee3c0f3 100644 --- a/lib/CodeGen/RegAllocLocal.cpp +++ b/lib/CodeGen/RegAllocLocal.cpp @@ -23,6 +23,7 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/Visibility.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/Statistic.h" #include <algorithm> @@ -34,7 +35,7 @@ namespace { Statistic<> NumLoads ("ra-local", "Number of loads added"); Statistic<> NumFolded("ra-local", "Number of loads/stores folded into " "instructions"); - class RA : public MachineFunctionPass { + class VISIBILITY_HIDDEN RA : public MachineFunctionPass { const TargetMachine *TM; MachineFunction *MF; const MRegisterInfo *RegInfo; |