llvm-mc: zerofill shouldn't print quotes around the section,segment.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79017 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
index ac2aabd..43ce04f 100644
--- a/lib/MC/MCAsmStreamer.cpp
+++ b/lib/MC/MCAsmStreamer.cpp
@@ -190,8 +190,7 @@
   
   // This is a mach-o specific directive.
   const MCSectionMachO *MOSection = ((const MCSectionMachO*)Section);
-  OS << '"' << MOSection->getSegmentName() << ","
-     << MOSection->getSectionName() << '"';
+  OS << MOSection->getSegmentName() << "," << MOSection->getSectionName();
   
   if (Symbol != NULL) {
     OS << ',' << Symbol << ',' << Size;