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 | 996795b0dda1c961de31430b2113f9e43634527f (patch) | |
tree | 27b7cf11a5cdbf47b7e82e12861a602252ff0768 /llvm/lib/CodeGen/UnreachableBlockElim.cpp | |
parent | d6cba04607e3f90acc5765f8a7e5f393b0df0c9b (diff) | |
download | bcm5719-llvm-996795b0dda1c961de31430b2113f9e43634527f.tar.gz bcm5719-llvm-996795b0dda1c961de31430b2113f9e43634527f.zip |
Use hidden visibility to make symbols in an anonymous namespace get
dropped. This shrinks libllvmgcc.dylib another 67K
llvm-svn: 28975
Diffstat (limited to 'llvm/lib/CodeGen/UnreachableBlockElim.cpp')
-rw-r--r-- | llvm/lib/CodeGen/UnreachableBlockElim.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/UnreachableBlockElim.cpp b/llvm/lib/CodeGen/UnreachableBlockElim.cpp index 1d4e5304f3b..e4fc9f8148d 100644 --- a/llvm/lib/CodeGen/UnreachableBlockElim.cpp +++ b/llvm/lib/CodeGen/UnreachableBlockElim.cpp @@ -27,11 +27,12 @@ #include "llvm/Pass.h" #include "llvm/Type.h" #include "llvm/Support/CFG.h" +#include "llvm/Support/Visibility.h" #include "llvm/ADT/DepthFirstIterator.h" using namespace llvm; namespace { - class UnreachableBlockElim : public FunctionPass { + class VISIBILITY_HIDDEN UnreachableBlockElim : public FunctionPass { virtual bool runOnFunction(Function &F); }; RegisterOpt<UnreachableBlockElim> |