[ADT] Switch a bunch of places in LLVM that were doing single-character
[oota-llvm.git] / lib / MC / SubtargetFeature.cpp
index 76574e987cb16406564dbd8bca4cf7dd8685c150..b642f17f0e79bed47d96c8c39a0c59cb0df7bf2d 100644 (file)
@@ -56,7 +56,7 @@ static inline bool isEnabled(StringRef Feature) {
 ///
 static void Split(std::vector<std::string> &V, StringRef S) {
   SmallVector<StringRef, 3> Tmp;
-  S.split(Tmp, ",", -1, false /* KeepEmpty */);
+  S.split(Tmp, ',', -1, false /* KeepEmpty */);
   V.assign(Tmp.begin(), Tmp.end());
 }