Initialize isRecursive. Found by Purify

llvm-svn: 1043
This commit is contained in:
Chris Lattner 2001-10-30 16:39:16 +00:00
parent 92fcd608cf
commit ff2a07f4df
1 changed files with 1 additions and 1 deletions

View 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);
}