Initialize isRecursive. Found by Purify
authorChris Lattner <sabre@nondot.org>
Tue, 30 Oct 2001 16:39:16 +0000 (16:39 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 30 Oct 2001 16:39:16 +0000 (16:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1043 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Type.cpp

index c25bdf02f85d9b801008f6e10f855603e7d61573..1e343bf78a06c0d789d3b83470e05cfe1c346e00 100644 (file)
@@ -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);
 }