Initialize member variable.
authorBenjamin Kramer <benny.kra@googlemail.com>
Thu, 25 Aug 2011 04:04:18 +0000 (04:04 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Thu, 25 Aug 2011 04:04:18 +0000 (04:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138548 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCStreamer.cpp

index 7e3d7a6886e3b051bbcf152fee9143f8b9b66e19..0fbf3875f1a050a368e5d615835daff5f4c8b3de 100644 (file)
@@ -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));
 }