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
This commit is contained in:
Dan Gohman 2008-08-05 15:51:44 +00:00
parent 8f613f30a7
commit c3be0fd8c3
4 changed files with 8 additions and 6 deletions

View File

@ -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";

View File

@ -52,6 +52,8 @@ std::string ParamAttr::getAsString(ParameterAttributes Attrs) {
Result += utostr((Attrs & ParamAttr::Alignment) >> 16);
Result += " ";
}
// Trim the trailing space.
Result.erase(Result.end()-1);
return Result;
}