diff options
Diffstat (limited to 'llvm/lib/Transforms/Scalar/GCSE.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/GCSE.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/lib/Transforms/Scalar/GCSE.cpp b/llvm/lib/Transforms/Scalar/GCSE.cpp index b00d3005bfa..3d700cb4da4 100644 --- a/llvm/lib/Transforms/Scalar/GCSE.cpp +++ b/llvm/lib/Transforms/Scalar/GCSE.cpp @@ -22,8 +22,7 @@ #include "llvm/Support/InstIterator.h" #include "Support/Statistic.h" #include <algorithm> - -namespace llvm { +using namespace llvm; namespace { Statistic<> NumInstRemoved("gcse", "Number of instructions removed"); @@ -56,7 +55,7 @@ namespace { } // createGCSEPass - The public interface to this file... -FunctionPass *createGCSEPass() { return new GCSE(); } +FunctionPass *llvm::createGCSEPass() { return new GCSE(); } // GCSE::runOnFunction - This is the main transformation entry point for a // function. @@ -270,5 +269,3 @@ Instruction *GCSE::EliminateCSE(Instruction *I, Instruction *Other) { return Ret; } - -} // End llvm namespace |