Initialize mdnNext.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77229 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2009-07-27 18:42:56 +00:00
parent fc17fb0aee
commit ad895a8dec

View File

@ -585,7 +585,7 @@ SlotTracker::SlotTracker(const Module *M)
// function provided to be added to the slot table.
SlotTracker::SlotTracker(const Function *F)
: TheModule(F ? F->getParent() : 0), TheFunction(F), FunctionProcessed(false),
TheMDNode(0), mNext(0), fNext(0) {
TheMDNode(0), mNext(0), fNext(0), mdnNext(0) {
}
// Constructor to handle single MDNode.