diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-24 00:40:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-24 00:40:17 +0000 |
commit | 71cdba31774ce18ed32e89f1c6f7716ab923aa46 (patch) | |
tree | 67d3aa594dc3da11de807973c5f5b4ec7eacc4d1 /lib/VMCore | |
parent | 52599e17b17b7b5731bd8e23d6b768a318dc37d3 (diff) | |
download | external_llvm-71cdba31774ce18ed32e89f1c6f7716ab923aa46.zip external_llvm-71cdba31774ce18ed32e89f1c6f7716ab923aa46.tar.gz external_llvm-71cdba31774ce18ed32e89f1c6f7716ab923aa46.tar.bz2 |
syntax change
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25567 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 43ecd32..d66497a 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -776,7 +776,7 @@ void AssemblyWriter::printModule(const Module *M) { Out << "target triple = \"" << M->getTargetTriple() << "\"\n"; if (!M->getInlineAsm().empty()) { - Out << "asm \""; + Out << "module asm \""; PrintEscapedString(M->getInlineAsm(), Out); Out << "\"\n"; } |