summaryrefslogtreecommitdiff
path: root/include/llvm/Type.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-07-09 17:59:15 +0000
committerChris Lattner <sabre@nondot.org>2011-07-09 17:59:15 +0000
commitaca50a94b8d4863adf07eec980b83599c541ed99 (patch)
treef66ecabbce2895eba5867c9668c12209306f7a21 /include/llvm/Type.h
parent1afcace3a3a138b1b18e5c6270caa8dae2261ae2 (diff)
downloadllvm-aca50a94b8d4863adf07eec980b83599c541ed99.tar.gz
llvm-aca50a94b8d4863adf07eec980b83599c541ed99.tar.bz2
llvm-aca50a94b8d4863adf07eec980b83599c541ed99.tar.xz
remove the DerivedType which isn't adding value anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134832 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Type.h')
-rw-r--r--include/llvm/Type.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index da11d98e26..e4ff3e1c8d 100644
--- a/include/llvm/Type.h
+++ b/include/llvm/Type.h
@@ -19,7 +19,6 @@
namespace llvm {
-class DerivedType;
class PointerType;
class IntegerType;
class raw_ostream;
@@ -40,7 +39,7 @@ class Type {
public:
//===--------------------------------------------------------------------===//
/// Definitions of all of the base types for the Type system. Based on this
- /// value, you can cast to a "DerivedType" subclass (see DerivedTypes.h)
+ /// value, you can cast to a class defined in DerivedTypes.h.
/// Note: If you add an element to this, you need to add an element to the
/// Type::getPrimitiveType function, or else things will break!
/// Also update LLVMTypeKind and LLVMGetTypeKind () in the C binding.