diff options
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 5ebf31c..b1ce257 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1413,7 +1413,7 @@ void AssemblyWriter::printFunction(const Function *F) { bool insideNotes = false; if (F->hasNote(Attribute::AlwaysInline)) { - Out << "notes("; + Out << " notes("; insideNotes = true; Out << "inline=always"; } @@ -1421,7 +1421,7 @@ void AssemblyWriter::printFunction(const Function *F) { if (insideNotes) Out << ","; else { - Out << "notes("; + Out << " notes("; insideNotes = true; } Out << "inline=never"; @@ -1430,7 +1430,7 @@ void AssemblyWriter::printFunction(const Function *F) { if (insideNotes) Out << ","; else { - Out << "notes("; + Out << " notes("; insideNotes = true; } Out << "opt_size"; |