From 43c8ad1718b79ab9191289da22ca09e635d0e0c2 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 19 Sep 2013 18:41:40 +0000 Subject: [PATCH] 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 --- lib/MC/MCAsmStreamer.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp index c612a23f953..2456d8de827 100644 --- a/lib/MC/MCAsmStreamer.cpp +++ b/lib/MC/MCAsmStreamer.cpp @@ -657,7 +657,6 @@ void MCAsmStreamer::EmitBytes(StringRef Data) { OS << MAI->getAsciiDirective(); } - OS << ' '; PrintQuotedString(Data, OS); EmitEOL(); } -- 2.34.1