Put all long strings in 80-col.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86527 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/FixedAddressChecker.cpp b/lib/Analysis/FixedAddressChecker.cpp
index fff451a..e30e3d0 100644
--- a/lib/Analysis/FixedAddressChecker.cpp
+++ b/lib/Analysis/FixedAddressChecker.cpp
@@ -56,7 +56,9 @@
   if (ExplodedNode *N = C.GenerateNode(B)) {
     if (!BT)
       BT = new BuiltinBug("Use fixed address", 
-                          "Using a fixed address is not portable because that address will probably not be valid in all environments or platforms.");
+                          "Using a fixed address is not portable because that "
+                          "address will probably not be valid in all "
+                          "environments or platforms.");
     RangedBugReport *R = new RangedBugReport(*BT, BT->getDescription().c_str(),
                                              N);
     R->addRange(B->getRHS()->getSourceRange());