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 | 1a70bcc38833984533c06e81f3f392521b25f7a2 (patch) | |
tree | 32aa00c8627985da5fbabc232263a7e9480b71eb /llvm/lib/VMCore/AsmWriter.cpp | |
parent | 3da016d13748fd793e1e6b3bcbd6a1f25564a4de (diff) | |
download | bcm5719-llvm-1a70bcc38833984533c06e81f3f392521b25f7a2.tar.gz bcm5719-llvm-1a70bcc38833984533c06e81f3f392521b25f7a2.zip |
Fix the AsmWriter to not print extra spaces after parameter attributes.
llvm-svn: 54351
Diffstat (limited to 'llvm/lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 98c6fefad7e..9a87b1867df 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/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"; |