aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/InstructionCombining.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-02 06:11:42 +0000
committerChris Lattner <sabre@nondot.org>2009-09-02 06:11:42 +0000
commitfa2d1ba102a74ecb0444957e0e5e1e99b064bfc3 (patch)
tree3864dfc8661f3ff9716f150dc64aa671c3b47fd2 /lib/Transforms/Scalar/InstructionCombining.cpp
parent84a6720fa162828ccf52531135afc2449662a2cd (diff)
downloadexternal_llvm-fa2d1ba102a74ecb0444957e0e5e1e99b064bfc3.zip
external_llvm-fa2d1ba102a74ecb0444957e0e5e1e99b064bfc3.tar.gz
external_llvm-fa2d1ba102a74ecb0444957e0e5e1e99b064bfc3.tar.bz2
eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80766 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index f4ae51b..ce2f452 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -55,7 +55,6 @@
#include "llvm/Support/IRBuilder.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Support/PatternMatch.h"
-#include "llvm/Support/Compiler.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallVector.h"
@@ -159,9 +158,8 @@ namespace {
namespace {
- class VISIBILITY_HIDDEN InstCombiner
- : public FunctionPass,
- public InstVisitor<InstCombiner, Instruction*> {
+ class InstCombiner : public FunctionPass,
+ public InstVisitor<InstCombiner, Instruction*> {
TargetData *TD;
bool MustPreserveLCSSA;
bool MadeIRChange;