Skip to content

Commit 4a207be

Browse files
committed
Rename SplitedExts with SplittedExts
1 parent b04637e commit 4a207be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Support/RISCVISAInfo.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -900,11 +900,11 @@ RISCVISAInfo::parseArchString(StringRef Arch, bool EnableExperimentalExtension,
900900
Exts = Exts.drop_front(ConsumeLength);
901901
Exts.consume_front("_");
902902

903-
std::vector<std::string> SplitedExts;
904-
if (auto E = splitExtsByUnderscore(Exts, SplitedExts))
903+
std::vector<std::string> SplittedExts;
904+
if (auto E = splitExtsByUnderscore(Exts, SplittedExts))
905905
return std::move(E);
906906

907-
for (auto &Ext : SplitedExts) {
907+
for (auto &Ext : SplittedExts) {
908908
StringRef CurrExt = Ext;
909909
while (!CurrExt.empty()) {
910910
if (AllStdExts.contains(CurrExt.front())) {

0 commit comments

Comments
 (0)