From 345ed9806a0ab5d680da1ff78fe3df7ebbc6107d Mon Sep 17 00:00:00 2001
From: "Michael J. Spencer" <bigcheesegs@gmail.com>
Date: Wed, 6 Oct 2010 20:36:47 +0000
Subject: [PATCH] MC: Add missing forward in MCLoggingStreamer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115830 91177308-0d34-0410-b5e6-96231b3b80d8
---
 lib/MC/MCLoggingStreamer.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/MC/MCLoggingStreamer.cpp b/lib/MC/MCLoggingStreamer.cpp
index 879afa44c5b..761574545f7 100644
--- a/lib/MC/MCLoggingStreamer.cpp
+++ b/lib/MC/MCLoggingStreamer.cpp
@@ -56,6 +56,7 @@ public:
 
   virtual void InitSections() {
     LogCall("InitSections");
+    return Child->InitSections();
   }
 
   virtual void EmitLabel(MCSymbol *Symbol) {