From: Chris Lattner Date: Tue, 30 Oct 2001 16:39:16 +0000 (+0000) Subject: Initialize isRecursive. Found by Purify X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=55fd998ce7bcc09a0f4b54aec425773cd12028a4;p=oota-llvm.git Initialize isRecursive. Found by Purify git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1043 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); }