Skip to content

Commit a86f982

Browse files
committed
Rename SplitedExts with SplittedExts
1 parent 8ca13e0 commit a86f982

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
@@ -897,11 +897,11 @@ RISCVISAInfo::parseArchString(StringRef Arch, bool EnableExperimentalExtension,
897897
Exts = Exts.drop_front(ConsumeLength);
898898
Exts.consume_front("_");
899899

900-
std::vector<std::string> SplitedExts;
901-
if (auto E = splitExtsByUnderscore(Exts, SplitedExts))
900+
std::vector<std::string> SplittedExts;
901+
if (auto E = splitExtsByUnderscore(Exts, SplittedExts))
902902
return std::move(E);
903903

904-
for (auto &Ext : SplitedExts) {
904+
for (auto &Ext : SplittedExts) {
905905
StringRef CurrExt = Ext;
906906
while (!CurrExt.empty()) {
907907
if (AllStdExts.contains(CurrExt.front())) {

0 commit comments

Comments
 (0)