From 63d3a54980877d6a5008f9f40a7ac31938812993 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 2 Apr 2014 22:32:51 +0000 Subject: [PATCH] Concatenate strings that are unnecessarily separated. llvm-svn: 205475 --- lld/include/lld/Driver/GnuLdInputGraph.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lld/include/lld/Driver/GnuLdInputGraph.h b/lld/include/lld/Driver/GnuLdInputGraph.h index f689a45..a5ecd71 100644 --- a/lld/include/lld/Driver/GnuLdInputGraph.h +++ b/lld/include/lld/Driver/GnuLdInputGraph.h @@ -61,12 +61,9 @@ public: /// \brief Dump the Input Element bool dump(raw_ostream &diagnostics) override { diagnostics << "Name : " << *getPath(_elfLinkingContext) << "\n" - << "Type : " - << "ELF File" - << "\n" + << "Type : ELF File\n" << "Ordinal : " << getOrdinal() << "\n" - << "Attributes : " - << "\n" + << "Attributes :\n" << " - wholeArchive : " << ((_attributes._isWholeArchive) ? "true" : "false") << "\n" << " - asNeeded : " -- 2.7.4