summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-01-26 22:47:07 +0000
committerChris Lattner <sabre@nondot.org>2002-01-26 22:47:07 +0000
commit33fa13c57ce3997a4af3e00aecb5290c12d75b20 (patch)
tree28f224c235b08508549c2fcee642a6c208f42f9f /lib/Transforms
parent3785a662c2c568b16905ab4f39a66dec183023ab (diff)
downloadllvm-33fa13c57ce3997a4af3e00aecb5290c12d75b20.tar.gz
llvm-33fa13c57ce3997a4af3e00aecb5290c12d75b20.tar.bz2
llvm-33fa13c57ce3997a4af3e00aecb5290c12d75b20.tar.xz
Remove opt namespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1587 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/InductionVars.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Transforms/Scalar/InductionVars.cpp b/lib/Transforms/Scalar/InductionVars.cpp
index cab778e025..6d7df4169b 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);