mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
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:
parent
8f613f30a7
commit
c3be0fd8c3
@ -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";
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user