because some subtarget feature strings have three components.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215339
91177308-0d34-0410-b5e6-
96231b3b80d8
/// Split - Splits a string of comma separated items in to a vector of strings.
///
static void Split(std::vector<std::string> &V, const StringRef S) {
- SmallVector<StringRef, 2> Tmp;
+ SmallVector<StringRef, 3> Tmp;
S.split(Tmp, ",", -1, false /* KeepEmpty */);
V.assign(Tmp.begin(), Tmp.end());
}