Skip to content

Commit 77ce1e4

Browse files
committed
Rename the SplitedExts with SplitExts
1 parent 776105f commit 77ce1e4

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
@@ -705,7 +705,7 @@ RISCVISAInfo::parseNormalizedArchString(StringRef Arch) {
705705
}
706706

707707
static Error splitExtsByUnderscore(StringRef Exts,
708-
std::vector<std::string> &SplitedExts) {
708+
std::vector<std::string> &SplitExts) {
709709
SmallVector<StringRef, 8> Split;
710710
if (Exts.empty())
711711
return Error::success();
@@ -717,7 +717,7 @@ static Error splitExtsByUnderscore(StringRef Exts,
717717
return createStringError(errc::invalid_argument,
718718
"extension name missing after separator '_'");
719719

720-
SplitedExts.push_back(Ext.str());
720+
SplitExts.push_back(Ext.str());
721721
}
722722
return Error::success();
723723
}

0 commit comments

Comments
 (0)