Skip to content

Commit b995086

Browse files
committed
Rename the SplitedExts with SplitExts
1 parent 0af1dee commit b995086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Support/RISCVISAInfo.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ RISCVISAInfo::parseNormalizedArchString(StringRef Arch) {
708708
}
709709

710710
static Error splitExtsByUnderscore(StringRef Exts,
711-
std::vector<std::string> &SplitedExts) {
711+
std::vector<std::string> &SplitExts) {
712712
SmallVector<StringRef, 8> Split;
713713
if (Exts.empty())
714714
return Error::success();
@@ -720,7 +720,7 @@ static Error splitExtsByUnderscore(StringRef Exts,
720720
return createStringError(errc::invalid_argument,
721721
"extension name missing after separator '_'");
722722

723-
SplitedExts.push_back(Ext.str());
723+
SplitExts.push_back(Ext.str());
724724
}
725725
return Error::success();
726726
}

0 commit comments

Comments
 (0)