summaryrefslogtreecommitdiff
path: root/lib/MC/MCAsmStreamer.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2013-01-18 19:37:00 +0000
committerDaniel Dunbar <daniel@zuster.org>2013-01-18 19:37:00 +0000
commit6d49b680be6e24b547e6910c2b64914913915084 (patch)
tree900d460952babe7c974e3b2c6c027cc6c8e9cda7 /lib/MC/MCAsmStreamer.cpp
parent55c6f0c6144b218e392c511f9e33b05bde08015f (diff)
downloadllvm-6d49b680be6e24b547e6910c2b64914913915084.tar.gz
llvm-6d49b680be6e24b547e6910c2b64914913915084.tar.bz2
llvm-6d49b680be6e24b547e6910c2b64914913915084.tar.xz
[MC/Mach-O] Implement integrated assembler support for linker options.
- Also, fixup syntax errors in LangRef and missing newline in the MCAsmStreamer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172837 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCAsmStreamer.cpp')
-rw-r--r--lib/MC/MCAsmStreamer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
index 88a7d338d5..71919473a3 100644
--- a/lib/MC/MCAsmStreamer.cpp
+++ b/lib/MC/MCAsmStreamer.cpp
@@ -383,6 +383,7 @@ void MCAsmStreamer::EmitLinkerOptions(ArrayRef<std::string> Options) {
ie = Options.end(); it != ie; ++it) {
OS << ", " << '"' << *it << '"';
}
+ OS << "\n";
}
void MCAsmStreamer::EmitDataRegion(MCDataRegionType Kind) {