aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-28 04:46:29 +0000
committerChris Lattner <sabre@nondot.org>2002-04-28 04:46:29 +0000
commit356b79320b053b77562b47c076c753ab4c4d60d7 (patch)
tree8eda37d21cdc4aec66b2e0f77d4271d77d91ae3f /include
parent853737706f57429b1a603e2b285df9a3db7723ba (diff)
downloadexternal_llvm-356b79320b053b77562b47c076c753ab4c4d60d7.zip
external_llvm-356b79320b053b77562b47c076c753ab4c4d60d7.tar.gz
external_llvm-356b79320b053b77562b47c076c753ab4c4d60d7.tar.bz2
Module's are no longer Value's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2347 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Value.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h
index b30b4cc..004a8ff 100644
--- a/include/llvm/Value.h
+++ b/include/llvm/Value.h
@@ -1,8 +1,7 @@
//===-- llvm/Value.h - Definition of the Value class -------------*- C++ -*--=//
//
// This file defines the very important Value class. This is subclassed by a
-// bunch of other important classes, like Instruction, Function, Module, Type,
-// etc...
+// bunch of other important classes, like Instruction, Function, Type, etc...
//
// This file also defines the Use<> template for users of value.
//
@@ -25,7 +24,6 @@ class BasicBlock;
class GlobalValue;
class Function;
class GlobalVariable;
-class Module;
class SymbolTable;
template<class ValueSubclass, class ItemParentType, class SymTabType>
class ValueHolder;
@@ -45,7 +43,6 @@ public:
BasicBlockVal, // This is an instance of BasicBlock
FunctionVal, // This is an instance of Function
GlobalVariableVal, // This is an instance of GlobalVariable
- ModuleVal, // This is an instance of Module
};
private:
@@ -238,11 +235,5 @@ template <> inline bool isa<GlobalValue, const Value*>(const Value *Val) {
template <> inline bool isa<GlobalValue, Value*>(Value *Val) {
return isa<GlobalVariable>(Val) || isa<Function>(Val);
}
-template <> inline bool isa<Module, const Value*>(const Value *Val) {
- return Val->getValueType() == Value::ModuleVal;
-}
-template <> inline bool isa<Module, Value*>(Value *Val) {
- return Val->getValueType() == Value::ModuleVal;
-}
#endif