aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Type.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Type.h')
-rw-r--r--include/llvm/Type.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/Type.h b/include/llvm/Type.h
index 2c92e7411b..e2ee9545bd 100644
--- a/include/llvm/Type.h
+++ b/include/llvm/Type.h
@@ -73,7 +73,6 @@ private:
PrimitiveID ID; // The current base type of this type...
unsigned UID; // The unique ID number for this class
bool Abstract; // True if type contains an OpaqueType
- bool Recursive; // True if the type is recursive
protected:
/// ctor is protected, so only subclasses can create Type objects...
@@ -89,10 +88,6 @@ protected:
///
inline void setAbstract(bool Val) { Abstract = Val; }
- /// Types can become recursive later, if they are refined.
- ///
- inline void setRecursive(bool Val) { Recursive = Val; }
-
public:
virtual void print(std::ostream &O) const;
@@ -148,10 +143,6 @@ public:
///
inline bool isAbstract() const { return Abstract; }
- /// isRecursive - True if the type graph contains a cycle.
- ///
- inline bool isRecursive() const { return Recursive; }
-
/// isLosslesslyConvertibleTo - Return true if this type can be converted to
/// 'Ty' without any reinterpretation of bits. For example, uint to int.
///