summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichael Liao <michael.liao@intel.com>2013-04-25 18:54:02 +0000
committerMichael Liao <michael.liao@intel.com>2013-04-25 18:54:02 +0000
commitc16f8c5e564fc2d69c75e85bdda66ad001d6b99e (patch)
treebf88d674effb0abe8f7ebfa8e3212f33a38a826c /utils
parent5df2e16ba1c1744a120352c2551211e8eff1f38c (diff)
downloadllvm-c16f8c5e564fc2d69c75e85bdda66ad001d6b99e.tar.gz
llvm-c16f8c5e564fc2d69c75e85bdda66ad001d6b99e.tar.bz2
llvm-c16f8c5e564fc2d69c75e85bdda66ad001d6b99e.tar.xz
Remove tailing whitespaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/FileCheck/FileCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/FileCheck/FileCheck.cpp b/utils/FileCheck/FileCheck.cpp
index b0ef67ac88..a25df5c57a 100644
--- a/utils/FileCheck/FileCheck.cpp
+++ b/utils/FileCheck/FileCheck.cpp
@@ -604,7 +604,7 @@ static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB,
continue;
}
- // If current char is not a horizontal whitespace or if horizontal
+ // If current char is not a horizontal whitespace or if horizontal
// whitespace canonicalization is disabled, dump it to output as is.
if (PreserveHorizontal || (*Ptr != ' ' && *Ptr != '\t')) {
NewFile.push_back(*Ptr);