summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LowerInvoke.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-06-28 22:08:15 +0000
committerChris Lattner <sabre@nondot.org>2006-06-28 22:08:15 +0000
commitf4b546110c7b9f0c24be26cfe1eccdd570ee9fee (patch)
tree39ba6318dba9944e7840f5e0c5208c56d66cd8bc /lib/Transforms/Utils/LowerInvoke.cpp
parent2a41a98fb70923e2d6780220eb225ac0e8b4ff36 (diff)
downloadllvm-f4b546110c7b9f0c24be26cfe1eccdd570ee9fee.tar.gz
llvm-f4b546110c7b9f0c24be26cfe1eccdd570ee9fee.tar.bz2
llvm-f4b546110c7b9f0c24be26cfe1eccdd570ee9fee.tar.xz
Shrink libllvmgcc.dylib by another 23K
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LowerInvoke.cpp')
-rw-r--r--lib/Transforms/Utils/LowerInvoke.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LowerInvoke.cpp b/lib/Transforms/Utils/LowerInvoke.cpp
index f7cb65c262..b5f652c154 100644
--- a/lib/Transforms/Utils/LowerInvoke.cpp
+++ b/lib/Transforms/Utils/LowerInvoke.cpp
@@ -44,6 +44,7 @@
#include "llvm/Transforms/Utils/Local.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Visibility.h"
#include <csetjmp>
using namespace llvm;
@@ -55,7 +56,7 @@ namespace {
cl::opt<bool> ExpensiveEHSupport("enable-correct-eh-support",
cl::desc("Make the -lowerinvoke pass insert expensive, but correct, EH code"));
- class LowerInvoke : public FunctionPass {
+ class VISIBILITY_HIDDEN LowerInvoke : public FunctionPass {
// Used for both models.
Function *WriteFn;
Function *AbortFn;