diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-09-02 06:11:42 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-09-02 06:11:42 +0000 | 
| commit | 2dd09dbdf7d3f687f2b157349be0bfb7711bb8a5 (patch) | |
| tree | 2476ef26c43a7dd2211bedba3041dc86f65ba272 /llvm/lib/Transforms/Scalar/SCCP.cpp | |
| parent | cf768cd20235585f485316ace72eb7254bcfcf54 (diff) | |
| download | bcm5719-llvm-2dd09dbdf7d3f687f2b157349be0bfb7711bb8a5.tar.gz bcm5719-llvm-2dd09dbdf7d3f687f2b157349be0bfb7711bb8a5.zip  | |
eliminate VISIBILITY_HIDDEN from Transforms/Scalar.  PR4861
llvm-svn: 80766
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SCCP.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/SCCP.cpp | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Scalar/SCCP.cpp b/llvm/lib/Transforms/Scalar/SCCP.cpp index 155e91ec7b4..e1f0ba535cd 100644 --- a/llvm/lib/Transforms/Scalar/SCCP.cpp +++ b/llvm/lib/Transforms/Scalar/SCCP.cpp @@ -33,7 +33,6 @@  #include "llvm/Analysis/ValueTracking.h"  #include "llvm/Transforms/Utils/Local.h"  #include "llvm/Support/CallSite.h" -#include "llvm/Support/Compiler.h"  #include "llvm/Support/Debug.h"  #include "llvm/Support/ErrorHandling.h"  #include "llvm/Support/InstVisitor.h" @@ -60,7 +59,7 @@ namespace {  /// LatticeVal class - This class represents the different lattice values that  /// an LLVM value may occupy.  It is a simple class with value semantics.  /// -class VISIBILITY_HIDDEN LatticeVal { +class LatticeVal {    enum {      /// undefined - This LLVM Value has no known value yet.      undefined, @@ -1506,7 +1505,7 @@ namespace {    /// SCCP Class - This class uses the SCCPSolver to implement a per-function    /// Sparse Conditional Constant Propagator.    /// -  struct VISIBILITY_HIDDEN SCCP : public FunctionPass { +  struct SCCP : public FunctionPass {      static char ID; // Pass identification, replacement for typeid      SCCP() : FunctionPass(&ID) {} @@ -1621,7 +1620,7 @@ namespace {    /// IPSCCP Class - This class implements interprocedural Sparse Conditional    /// Constant Propagation.    /// -  struct VISIBILITY_HIDDEN IPSCCP : public ModulePass { +  struct IPSCCP : public ModulePass {      static char ID;      IPSCCP() : ModulePass(&ID) {}      bool runOnModule(Module &M);  | 

