summaryrefslogtreecommitdiff
path: root/lib/Analysis/AliasDebugger.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-05 23:42:17 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-05 23:42:17 +0000
commitd7d83db5f22d05e5b14b6b1d838668222113c83a (patch)
tree295ee828cbd1ba13f6eb1e28b112ef26aebb72fa /lib/Analysis/AliasDebugger.cpp
parentd3874049a55fe1af515c4f0d8f5a4040803567cb (diff)
downloadllvm-d7d83db5f22d05e5b14b6b1d838668222113c83a.tar.gz
llvm-d7d83db5f22d05e5b14b6b1d838668222113c83a.tar.bz2
llvm-d7d83db5f22d05e5b14b6b1d838668222113c83a.tar.xz
Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduce
LLVM's footprint and speed up linking. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/AliasDebugger.cpp')
-rw-r--r--lib/Analysis/AliasDebugger.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Analysis/AliasDebugger.cpp b/lib/Analysis/AliasDebugger.cpp
index d9da70d521..3f7f1cccae 100644
--- a/lib/Analysis/AliasDebugger.cpp
+++ b/lib/Analysis/AliasDebugger.cpp
@@ -23,12 +23,14 @@
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
#include "llvm/Analysis/AliasAnalysis.h"
+#include "llvm/Support/Compiler.h"
#include <set>
using namespace llvm;
namespace {
- class AliasDebugger : public ModulePass, public AliasAnalysis {
+ class VISIBILITY_HIDDEN AliasDebugger
+ : public ModulePass, public AliasAnalysis {
//What we do is simple. Keep track of every value the AA could
//know about, and verify that queries are one of those.