summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2018-04-09 09:10:34 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2018-04-09 09:10:34 +0000
commit6081dbc5fc4dc550ca28680d524d5da6610ccbfc (patch)
treefc646af88c3dc901c7bfc93e3d3a0543c95b8b81
parent79766820a3ba2e792593ee89d26225bf686f7440 (diff)
downloadbcm5719-llvm-6081dbc5fc4dc550ca28680d524d5da6610ccbfc.tar.gz
bcm5719-llvm-6081dbc5fc4dc550ca28680d524d5da6610ccbfc.zip
[dsymutil] Remove trailing colon. NFC
llvm-svn: 329554
-rw-r--r--llvm/tools/dsymutil/DwarfLinker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/dsymutil/DwarfLinker.cpp b/llvm/tools/dsymutil/DwarfLinker.cpp
index d3a6a15268c..14935aab3bc 100644
--- a/llvm/tools/dsymutil/DwarfLinker.cpp
+++ b/llvm/tools/dsymutil/DwarfLinker.cpp
@@ -589,13 +589,13 @@ static bool inFunctionScope(CompileUnit &U, unsigned Idx) {
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;
}
OpenPOWER on IntegriCloud