From 4921f683118ed8b281e006791ff78b4d1dce9cd8 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 24 Sep 2014 04:44:50 +0000 Subject: [PATCH] Unix/Host.inc: Wrap a comment line in 80-col. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218371 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Unix/Host.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Support/Unix/Host.inc b/lib/Support/Unix/Host.inc index ea81a630d69..ce21d358aab 100644 --- a/lib/Support/Unix/Host.inc +++ b/lib/Support/Unix/Host.inc @@ -39,7 +39,8 @@ std::string sys::getDefaultTargetTriple() { StringRef TargetTripleString(LLVM_DEFAULT_TARGET_TRIPLE); std::pair ArchSplit = TargetTripleString.split('-'); - // Normalize the arch, since the target triple may not actually match the target. + // Normalize the arch, since the target triple may not actually match the + // target. std::string Arch = ArchSplit.first; std::string Triple(Arch);