Remove extraneous space, the asm printing infrastructure adds a space

in normally.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191026 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-09-19 18:41:40 +00:00
parent ecb41cfe36
commit 43c8ad1718

View File

@ -657,7 +657,6 @@ void MCAsmStreamer::EmitBytes(StringRef Data) {
OS << MAI->getAsciiDirective();
}
OS << ' ';
PrintQuotedString(Data, OS);
EmitEOL();
}