Skip to content

Commit bd22631

Browse files
committed
Rename the SplitedExts with SplitExts
1 parent cf5f677 commit bd22631

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

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

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

0 commit comments

Comments
 (0)