aboutsummaryrefslogtreecommitdiff
path: root/Analysis/DeadStores.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-01-08 18:19:08 +0000
committerTed Kremenek <kremenek@apple.com>2008-01-08 18:19:08 +0000
commitc2b51d8cf33bed92b68ee0a8e3c28411e43faffd (patch)
tree8029fa0eb9cfbeac643ea607dbfa6b7af25cb8ef /Analysis/DeadStores.cpp
parent6fa9b88e2c3d47d606a273df2f8d03509bcff0b9 (diff)
Added VISIBILITY_HIDDEN to classes/structs in anonymous namespaces.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45750 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Analysis/DeadStores.cpp')
-rw-r--r--Analysis/DeadStores.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Analysis/DeadStores.cpp b/Analysis/DeadStores.cpp
index 62ab157131..564478d626 100644
--- a/Analysis/DeadStores.cpp
+++ b/Analysis/DeadStores.cpp
@@ -17,12 +17,13 @@
#include "clang/Analysis/Visitors/CFGRecStmtVisitor.h"
#include "clang/Basic/Diagnostic.h"
#include "clang/AST/ASTContext.h"
+#include "llvm/Support/Compiler.h"
using namespace clang;
namespace {
-class DeadStoreObs : public LiveVariables::ObserverTy {
+class VISIBILITY_HIDDEN DeadStoreObs : public LiveVariables::ObserverTy {
ASTContext &Ctx;
Diagnostic &Diags;
public: