Attributes: Don't print trailing whitespace on the function attribute comment.
authorBenjamin Kramer <benny.kra@googlemail.com>
Fri, 19 Apr 2013 11:43:21 +0000 (11:43 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Fri, 19 Apr 2013 11:43:21 +0000 (11:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179849 91177308-0d34-0410-b5e6-96231b3b80d8

lib/IR/Attributes.cpp
test/Other/attribute-comment.ll [new file with mode: 0644]

index 98dcecfba6b56413ea6a6f494abad0de95fe9510..44fa78e4af61b3053f1cbbd13af2539144fe9bb9 100644 (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;
diff --git a/test/Other/attribute-comment.ll b/test/Other/attribute-comment.ll
new file mode 100644 (file)
index 0000000..7354e7f
--- /dev/null
@@ -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" }