Tweak wording of alignment static_assert messages.
[oota-llvm.git] / lib / IR / AttributeImpl.h
index 88a68a4e0059313a3f3b96a32df276764da0e036..6f338ae835fa98aa9b8d88297930c3e62c8119a6 100644 (file)
@@ -181,9 +181,9 @@ public:
       AttrList[I].Profile(ID);
   }
 };
       AttrList[I].Profile(ID);
   }
 };
-static_assert(AlignOf<AttributeSetNode>::Alignment >=
-                  AlignOf<Attribute>::Alignment,
-              "Alignment sufficient for objects appended to AttributeSetNode");
+static_assert(
+    AlignOf<AttributeSetNode>::Alignment >= AlignOf<Attribute>::Alignment,
+    "Alignment is insufficient for objects appended to AttributeSetNode");
 
 //===----------------------------------------------------------------------===//
 /// \class
 
 //===----------------------------------------------------------------------===//
 /// \class
@@ -273,9 +273,10 @@ public:
 
   void dump() const;
 };
 
   void dump() const;
 };
-static_assert(AlignOf<AttributeSetImpl>::Alignment >=
-                  AlignOf<AttributeSetImpl::IndexAttrPair>::Alignment,
-              "Alignment sufficient for objects appended to AttributeSetImpl");
+static_assert(
+    AlignOf<AttributeSetImpl>::Alignment >=
+        AlignOf<AttributeSetImpl::IndexAttrPair>::Alignment,
+    "Alignment is insufficient for objects appended to AttributeSetImpl");
 
 } // end llvm namespace
 
 
 } // end llvm namespace