Remove extraneous space, the asm printing infrastructure adds a space
authorEric Christopher <echristo@gmail.com>
Thu, 19 Sep 2013 18:41:40 +0000 (18:41 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 19 Sep 2013 18:41:40 +0000 (18:41 +0000)
in normally.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191026 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCAsmStreamer.cpp

index c612a23f953de00ebcffb0f0cd2d7bdc4c41527f..2456d8de8276d59c8a7df62784ffa3cfe781f87a 100644 (file)
@@ -657,7 +657,6 @@ void MCAsmStreamer::EmitBytes(StringRef Data) {
     OS << MAI->getAsciiDirective();
   }
 
-  OS << ' ';
   PrintQuotedString(Data, OS);
   EmitEOL();
 }