Fix 80 col violations.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41611 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Sema/ASTStreamer.cpp b/Sema/ASTStreamer.cpp
index 1057d93..c0f4cae 100644
--- a/Sema/ASTStreamer.cpp
+++ b/Sema/ASTStreamer.cpp
@@ -91,8 +91,8 @@
   return new ASTStreamer(pp, ctxt, MainFileID);
 }
 
-/// ASTStreamer_ReadTopLevelDecl - Parse and return one top-level declaration. This
-/// returns null at end of file.
+/// ASTStreamer_ReadTopLevelDecl - Parse and return one top-level declaration.
+/// This returns null at end of file.
 Decl *clang::ASTStreamer_ReadTopLevelDecl(ASTStreamerTy *Streamer) {
   return static_cast<ASTStreamer*>(Streamer)->ReadTopLevelDecl();
 }
diff --git a/Sema/SemaChecking.cpp b/Sema/SemaChecking.cpp
index 5569f48..863882e 100644
--- a/Sema/SemaChecking.cpp
+++ b/Sema/SemaChecking.cpp
@@ -41,7 +41,7 @@
   if (FnInfo->getBuiltinID() == 
       Builtin::BI__builtin___CFStringMakeConstantString) {
     assert(NumArgsInCall == 1 &&
-           "Wrong number of arguments to builtin CFStringMakeConstantString");    
+           "Wrong number of arguments to builtin CFStringMakeConstantString");
     return CheckBuiltinCFStringArgument(Args[0]);
   }