Unix/Host.inc: Wrap a comment line in 80-col.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 24 Sep 2014 04:44:50 +0000 (04:44 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Wed, 24 Sep 2014 04:44:50 +0000 (04:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218371 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Unix/Host.inc

index ea81a630d694ab1da3a1966ee8b4d4d71c62e303..ce21d358aab8bc99d5a3c7061e2f0ca4609f7916 100644 (file)
@@ -39,7 +39,8 @@ std::string sys::getDefaultTargetTriple() {
   StringRef TargetTripleString(LLVM_DEFAULT_TARGET_TRIPLE);
   std::pair<StringRef, StringRef> 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);