Don't declare all text sections at the start of the .s
[oota-llvm.git] / tools / llvm-mc / llvm-mc.cpp
index eb0df78c48d0943fe99ef361021e537151b4d5be..4f9b6fc99e3186bd1e6ae7439da7f5964612302a 100644 (file)
@@ -472,7 +472,8 @@ int main(int argc, char **argv) {
     MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, Ctx);
     MCAsmBackend *MAB = TheTarget->createMCAsmBackend(*MRI, TripleName, MCPU);
     Str.reset(TheTarget->createMCObjectStreamer(TheTriple, Ctx, *MAB, FOS, CE,
-                                                *STI, RelaxAll));
+                                                *STI, RelaxAll,
+                                                /*DWARFMustBeAtTheEnd*/ false));
     if (NoExecStack)
       Str->InitSections(true);
   }