From: Benjamin Kramer Date: Thu, 25 Aug 2011 04:04:18 +0000 (+0000) Subject: Initialize member variable. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2df9f8df9541e7650876413cde555eb3d285be4b;p=oota-llvm.git Initialize member variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138548 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCStreamer.cpp b/lib/MC/MCStreamer.cpp index 7e3d7a6886e..0fbf3875f1a 100644 --- a/lib/MC/MCStreamer.cpp +++ b/lib/MC/MCStreamer.cpp @@ -22,7 +22,8 @@ using namespace llvm; MCStreamer::MCStreamer(MCContext &Ctx) : Context(Ctx), EmitEHFrame(true), EmitDebugFrame(false), - CurrentW64UnwindInfo(0) { + CurrentW64UnwindInfo(0), + LastSymbol(0) { const MCSection *section = NULL; SectionStack.push_back(std::make_pair(section, section)); }