summaryrefslogtreecommitdiff
path: root/lib/Transforms/TransformInternals.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-30 22:53:53 +0000
committerChris Lattner <sabre@nondot.org>2002-08-30 22:53:53 +0000
commitc74cb8698f1771603a6ab008277a407c55e47753 (patch)
tree9497db4fb301ee674021fe83d8bfdd8c6392be2e /lib/Transforms/TransformInternals.cpp
parent2964f3624c38247d1954927754c1933400dae0d6 (diff)
downloadllvm-c74cb8698f1771603a6ab008277a407c55e47753.tar.gz
llvm-c74cb8698f1771603a6ab008277a407c55e47753.tar.bz2
llvm-c74cb8698f1771603a6ab008277a407c55e47753.tar.xz
- Eliminate the last traces of the 'analysis' namespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/TransformInternals.cpp')
-rw-r--r--lib/Transforms/TransformInternals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/TransformInternals.cpp b/lib/Transforms/TransformInternals.cpp
index f8476231cf..3f61864c9c 100644
--- a/lib/Transforms/TransformInternals.cpp
+++ b/lib/Transforms/TransformInternals.cpp
@@ -94,7 +94,7 @@ const Type *ConvertableToGEP(const Type *Ty, Value *OffsetVal,
// See if the cast is of an integer expression that is either a constant,
// or a value scaled by some amount with a possible offset.
//
- analysis::ExprType Expr = analysis::ClassifyExpression(OffsetVal);
+ ExprType Expr = ClassifyExpression(OffsetVal);
// Get the offset and scale values if they exists...
// A scale of zero with Expr.Var != 0 means a scale of 1.