From 55fd998ce7bcc09a0f4b54aec425773cd12028a4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 30 Oct 2001 16:39:16 +0000 Subject: [PATCH] Initialize isRecursive. Found by Purify git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1043 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index c25bdf02f85..1e343bf78a0 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); } -- 2.34.1