Attributes: Don't print trailing whitespace on the function attribute comment.

llvm-svn: 179849
This commit is contained in:
Benjamin Kramer 2013-04-19 11:43:21 +00:00
parent feef8c2469
commit 0baf8f4279
2 changed files with 13 additions and 5 deletions

View File

@ -482,14 +482,13 @@ unsigned AttributeSetNode::getStackAlignment() const {
std::string AttributeSetNode::getAsString(bool TargetIndependent,
bool InAttrGrp) const {
std::string Str = "";
std::string Str;
for (SmallVectorImpl<Attribute>::const_iterator I = AttrList.begin(),
E = AttrList.end(); I != E; ) {
E = AttrList.end(); I != E; ++I) {
if (TargetIndependent || !I->isStringAttribute()) {
if (I != AttrList.begin())
Str += ' ';
Str += I->getAsString(InAttrGrp);
if (++I != E) Str += " ";
} else {
++I;
}
}
return Str;

View File

@ -0,0 +1,9 @@
; RUN: opt -S < %s | FileCheck %s -strict-whitespace
; CHECK: {{^}}; Function Attrs: nounwind readnone ssp uwtable{{$}}
; CHECK-NEXT: define void @test1() #0
define void @test1() #0 {
ret void
}
attributes #0 = { nounwind ssp "less-precise-fpmad"="false" uwtable "no-frame-pointer-elim"="true" readnone "no-frame-pointer-elim-non-leaf"="true" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "unsafe-fp-math"="false" "use-soft-float"="false" }