diff --git a/include/llvm/Transforms/Scalar/InductionVars.h b/include/llvm/Transforms/Scalar/InductionVars.h index 146239d82bf..4faf3458f66 100644 --- a/include/llvm/Transforms/Scalar/InductionVars.h +++ b/include/llvm/Transforms/Scalar/InductionVars.h @@ -10,8 +10,6 @@ #include "llvm/Pass.h" -namespace opt { - struct InductionVariableCannonicalize : public MethodPass { // doInductionVariableCannonicalize - Simplify induction variables in loops // @@ -22,6 +20,4 @@ struct InductionVariableCannonicalize : public MethodPass { } }; -} // end namespace opt - #endif diff --git a/lib/Transforms/Scalar/InductionVars.cpp b/lib/Transforms/Scalar/InductionVars.cpp index cab778e025b..6d7df4169b6 100644 --- a/lib/Transforms/Scalar/InductionVars.cpp +++ b/lib/Transforms/Scalar/InductionVars.cpp @@ -32,8 +32,6 @@ using std::cerr; #include "llvm/Analysis/LoopDepth.h" -using namespace opt; - // isLoopInvariant - Return true if the specified value/basic block source is // an interval invariant computation. // @@ -373,7 +371,7 @@ static bool ProcessIntervalPartition(cfg::IntervalPartition &IP) { // This function loops over an interval partition of a program, reducing it // until the graph is gone. // -bool opt::InductionVariableCannonicalize::doIt(Method *M) { +bool InductionVariableCannonicalize::doIt(Method *M) { // TODO: REMOVE if (0) { // Print basic blocks with their depth LoopDepthCalculator LDC(M);