Define new itin classes for ARM <-> VFP reg moves to distinguish from NEON ops. Defin...
[oota-llvm.git] / lib / Target / SubtargetFeature.cpp
index 7cc4fd1d2637d2fcd52ba1f3f296eacd0cbcc1b1..2094cc945a42edfb32075fb525ea099d5d8589a0 100644 (file)
@@ -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));