Make sure ValueFn starts off empty

llvm-svn: 94256
This commit is contained in:
Victor Hernandez 2010-01-23 00:03:28 +00:00
parent c22893a3b7
commit 73b0f99f17
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ void DIVariable::dump() const {
//===----------------------------------------------------------------------===//
DIFactory::DIFactory(Module &m)
: M(m), VMContext(M.getContext()), DeclareFn(0) {}
: M(m), VMContext(M.getContext()), DeclareFn(0), ValueFn(0) {}
Constant *DIFactory::GetTagConstant(unsigned TAG) {
assert((TAG & LLVMDebugVersionMask) == 0 &&