summaryrefslogtreecommitdiff
path: root/lib/MC
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-09-19 18:41:40 +0000
committerEric Christopher <echristo@gmail.com>2013-09-19 18:41:40 +0000
commit43c8ad1718b79ab9191289da22ca09e635d0e0c2 (patch)
treec9e54cca9a8477c5e502c120212c45e1717abe9e /lib/MC
parentecb41cfe36c9e60664c95970bfae82e4cf7397c5 (diff)
downloadllvm-43c8ad1718b79ab9191289da22ca09e635d0e0c2.tar.gz
llvm-43c8ad1718b79ab9191289da22ca09e635d0e0c2.tar.bz2
llvm-43c8ad1718b79ab9191289da22ca09e635d0e0c2.tar.xz
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
Diffstat (limited to 'lib/MC')
-rw-r--r--lib/MC/MCAsmStreamer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
index c612a23f95..2456d8de82 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();
}