From: Benjamin Kramer Date: Thu, 17 Sep 2009 14:51:57 +0000 (+0000) Subject: Initialize HasMetadata to zero. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d8c8e01fe8e30dc332f07d3216b2fad55741e1cf;p=oota-llvm.git Initialize HasMetadata to zero. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82145 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 92a5b702cf9..dcac01ce47a 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -44,8 +44,8 @@ static inline const Type *checkType(const Type *Ty) { } Value::Value(const Type *ty, unsigned scid) - : SubclassID(scid), HasValueHandle(0), SubclassOptionalData(0), - SubclassData(0), VTy(checkType(ty)), + : SubclassID(scid), HasValueHandle(0), HasMetadata(0), + SubclassOptionalData(0), SubclassData(0), VTy(checkType(ty)), UseList(0), Name(0) { if (isa(this) || isa(this)) assert((VTy->isFirstClassType() ||