Remove VISIBILITY_HIDDEN from this file.

llvm-svn: 80903
This commit is contained in:
Nick Lewycky 2009-09-03 06:43:15 +00:00
parent cdb6fd2c7c
commit 88214fbd12
1 changed files with 3 additions and 4 deletions

View File

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