Remove VISIBILITY_HIDDEN from this file.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80903 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2009-09-03 06:43:15 +00:00
parent 46d061dd28
commit 8aa9fba7cb

View File

@ -31,12 +31,11 @@
#include "llvm/ValueSymbolTable.h" #include "llvm/ValueSymbolTable.h"
#include "llvm/TypeSymbolTable.h" #include "llvm/TypeSymbolTable.h"
#include "llvm/Transforms/Utils/Local.h" #include "llvm/Transforms/Utils/Local.h"
#include "llvm/Support/Compiler.h"
#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/SmallPtrSet.h"
using namespace llvm; using namespace llvm;
namespace { namespace {
class VISIBILITY_HIDDEN StripSymbols : public ModulePass { class StripSymbols : public ModulePass {
bool OnlyDebugInfo; bool OnlyDebugInfo;
public: public:
static char ID; // Pass identification, replacement for typeid static char ID; // Pass identification, replacement for typeid
@ -50,7 +49,7 @@ namespace {
} }
}; };
class VISIBILITY_HIDDEN StripNonDebugSymbols : public ModulePass { class StripNonDebugSymbols : public ModulePass {
public: public:
static char ID; // Pass identification, replacement for typeid static char ID; // Pass identification, replacement for typeid
explicit StripNonDebugSymbols() explicit StripNonDebugSymbols()
@ -63,7 +62,7 @@ namespace {
} }
}; };
class VISIBILITY_HIDDEN StripDebugDeclare : public ModulePass { class StripDebugDeclare : public ModulePass {
public: public:
static char ID; // Pass identification, replacement for typeid static char ID; // Pass identification, replacement for typeid
explicit StripDebugDeclare() explicit StripDebugDeclare()