diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-10 16:03:48 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-10 16:03:48 +0000 |
commit | f451cb870efcf9e0302d25ed05f4cac6bb494e42 (patch) | |
tree | f614bd15d6f3e0b944c58469b235dafc3e693747 /lib/Target/SubtargetFeature.cpp | |
parent | c056baed8704bd715ee58e5dfe724c255e68abbd (diff) | |
download | external_llvm-f451cb870efcf9e0302d25ed05f4cac6bb494e42.zip external_llvm-f451cb870efcf9e0302d25ed05f4cac6bb494e42.tar.gz external_llvm-f451cb870efcf9e0302d25ed05f4cac6bb494e42.tar.bz2 |
Fix "the the" and similar typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95781 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SubtargetFeature.cpp')
-rw-r--r-- | lib/Target/SubtargetFeature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SubtargetFeature.cpp b/lib/Target/SubtargetFeature.cpp index 7cc4fd1..2094cc9 100644 --- a/lib/Target/SubtargetFeature.cpp +++ b/lib/Target/SubtargetFeature.cpp @@ -67,7 +67,7 @@ static void Split(std::vector<std::string> &V, const std::string &S) { while (true) { // Find the next comma size_t Comma = S.find(',', Pos); - // If no comma found then the the rest of the string is used + // If no comma found then the rest of the string is used if (Comma == std::string::npos) { // Add string to vector V.push_back(S.substr(Pos)); |