[llvm] r329554 - [dsymutil] Remove trailing colon. NFC

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 9 02:10:35 PDT 2018


Author: jdevlieghere
Date: Mon Apr  9 02:10:34 2018
New Revision: 329554

URL: http://llvm.org/viewvc/llvm-project?rev=329554&view=rev
Log:
[dsymutil] Remove trailing colon. NFC

Modified:
    llvm/trunk/tools/dsymutil/DwarfLinker.cpp

Modified: llvm/trunk/tools/dsymutil/DwarfLinker.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/DwarfLinker.cpp?rev=329554&r1=329553&r2=329554&view=diff
==============================================================================
--- llvm/trunk/tools/dsymutil/DwarfLinker.cpp (original)
+++ llvm/trunk/tools/dsymutil/DwarfLinker.cpp Mon Apr  9 02:10:34 2018
@@ -589,13 +589,13 @@ static bool inFunctionScope(CompileUnit
 void warn(Twine Warning, Twine Context) {
   warn_ostream() << Warning + "\n";
   if (!Context.isTriviallyEmpty())
-    note_ostream() << Twine("while processing ") + Context + ":\n";
+    note_ostream() << Twine("while processing ") + Context + "\n";
 }
 
 bool error(Twine Error, Twine Context) {
   error_ostream() << Error + "\n";
   if (!Context.isTriviallyEmpty())
-    note_ostream() << Twine("while processing ") + Context + ":\n";
+    note_ostream() << Twine("while processing ") + Context + "\n";
   return false;
 }
 




More information about the llvm-commits mailing list