diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-05 15:51:44 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-05 15:51:44 +0000 |
commit | abbdc89d7e44333657ee67dc4d85b82737e73d63 (patch) | |
tree | e9f238737783c1ccaccee1f92072dac179cf0950 /lib/VMCore/AsmWriter.cpp | |
parent | c154449b3b3c6ec60c7e7a766b88155b9889f7e9 (diff) | |
download | external_llvm-abbdc89d7e44333657ee67dc4d85b82737e73d63.tar.gz external_llvm-abbdc89d7e44333657ee67dc4d85b82737e73d63.tar.bz2 external_llvm-abbdc89d7e44333657ee67dc4d85b82737e73d63.zip |
Fix the AsmWriter to not print extra spaces after parameter attributes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-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 98c6fefad7..9a87b1867d 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1385,7 +1385,7 @@ void AssemblyWriter::printInstruction(const Instruction &I) { Out << " )"; if (PAL.getParamAttrs(0) != ParamAttr::None) - Out << " " << ParamAttr::getAsString(PAL.getParamAttrs(0)); + Out << ' ' << ParamAttr::getAsString(PAL.getParamAttrs(0)); Out << "\n\t\t\tto"; writeOperand(II->getNormalDest(), true); Out << " unwind"; |