Reflow.

llvm-svn: 90407
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp
index d3d26ca..1ceb254 100644
--- a/clang/lib/CodeGen/CGException.cpp
+++ b/clang/lib/CodeGen/CGException.cpp
@@ -390,7 +390,9 @@
         // FIXME: objects with ctors, references
         Builder.CreateStore(ExcObject, GetAddrOfLocalVar(CatchParam));
 #else
-        // FIXME: we need to do this sooner so that the EH region for the cleanup doesn't start until after the ctor completes, use a decl init?
+        // FIXME: we need to do this sooner so that the EH region for the
+        // cleanup doesn't start until after the ctor completes, use a decl
+        // init?
         CopyObject(*this, CatchParam->getType().getNonReferenceType(),
                    ExcObject, GetAddrOfLocalVar(CatchParam));
 #endif