aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Type.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-30 16:39:16 +0000
committerChris Lattner <sabre@nondot.org>2001-10-30 16:39:16 +0000
commit55fd998ce7bcc09a0f4b54aec425773cd12028a4 (patch)
treebd63cd30129c0f40dc2025dbd5548705fdce8063 /lib/VMCore/Type.cpp
parent6c80e732dc6a145d66913017775ef3c7d560832c (diff)
downloadexternal_llvm-55fd998ce7bcc09a0f4b54aec425773cd12028a4.zip
external_llvm-55fd998ce7bcc09a0f4b54aec425773cd12028a4.tar.gz
external_llvm-55fd998ce7bcc09a0f4b54aec425773cd12028a4.tar.bz2
Initialize isRecursive. Found by Purify
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Type.cpp')
-rw-r--r--lib/VMCore/Type.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp
index c25bdf0..1e343bf 100644
--- a/lib/VMCore/Type.cpp
+++ b/lib/VMCore/Type.cpp
@@ -28,7 +28,7 @@ Type::Type(const string &name, PrimitiveID id)
: Value(Type::TypeTy, Value::TypeVal) {
setDescription(name);
ID = id;
- Abstract = false;
+ Abstract = Recursive = false;
UID = CurUID++; // Assign types UID's as they are created
UIDMappings.push_back(this);
}