diff options
Diffstat (limited to 'lib/MC/MCStreamer.cpp')
| -rw-r--r-- | lib/MC/MCStreamer.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MC/MCStreamer.cpp b/lib/MC/MCStreamer.cpp index 3dcdba13135f6..4b302c8602c98 100644 --- a/lib/MC/MCStreamer.cpp +++ b/lib/MC/MCStreamer.cpp @@ -20,8 +20,8 @@  using namespace llvm;  MCStreamer::MCStreamer(MCContext &Ctx) : Context(Ctx) { -  PrevSectionStack.push_back(NULL); -  CurSectionStack.push_back(NULL); +  const MCSection *section = NULL; +  SectionStack.push_back(std::make_pair(section, section));  }  MCStreamer::~MCStreamer() {  | 
