diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 3547ac581a3..9dc45f267e4 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -31,7 +31,8 @@ static inline const Type *checkType(const Type *Ty) { } Value::Value(const Type *ty, unsigned scid, const std::string &name) - : SubclassID(scid), Ty(checkType(ty)), UseList(0), Name(name) { + : SubclassID(scid), SubclassData(0), Ty(checkType(ty)), + UseList(0), Name(name) { if (!isa(this) && !isa(this)) assert((Ty->isFirstClassType() || Ty == Type::VoidTy || isa(ty)) &&