diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-28 04:50:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-28 04:50:00 +0000 |
commit | 6a1ea6fffc486427ab692345229473fa80714eee (patch) | |
tree | 98e7be4fa0fafde116d661173104f99acdef96c9 /llvm/lib/Analysis/Expressions.cpp | |
parent | 503a3fcb42c16c70164ae01721dae566d0fdadee (diff) | |
download | bcm5719-llvm-6a1ea6fffc486427ab692345229473fa80714eee.tar.gz bcm5719-llvm-6a1ea6fffc486427ab692345229473fa80714eee.zip |
Module's are no longer Value subclasses
llvm-svn: 2351
Diffstat (limited to 'llvm/lib/Analysis/Expressions.cpp')
-rw-r--r-- | llvm/lib/Analysis/Expressions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/Expressions.cpp b/llvm/lib/Analysis/Expressions.cpp index e78fb1e690a..006a9920b54 100644 --- a/llvm/lib/Analysis/Expressions.cpp +++ b/llvm/lib/Analysis/Expressions.cpp @@ -240,7 +240,7 @@ ExprType analysis::ClassifyExpression(Value *Expr) { switch (Expr->getValueType()) { case Value::InstructionVal: break; // Instruction... hmmm... investigate. case Value::TypeVal: case Value::BasicBlockVal: - case Value::FunctionVal: case Value::ModuleVal: default: + case Value::FunctionVal: default: //assert(0 && "Unexpected expression type to classify!"); std::cerr << "Bizarre thing to expr classify: " << Expr << "\n"; return Expr; |