Skip to content

Commit ae87d0d

Browse files
committed
Fix type error
1 parent 69ed663 commit ae87d0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Analysis/TargetLibraryInfo.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ static const VecDesc VecFuncs_SLEEFGNUABI_VFScalable[] = {
13241324
#undef TLI_DEFINE_SLEEFGNUABI_SCALABLE_VECFUNCS
13251325
};
13261326

1327-
static const VecDesc VecFuncs_SKEEFGNUABI_VFScalableRISCV[] = {
1327+
static const VecDesc VecFuncs_SLEEFGNUABI_VFScalableRISCV[] = {
13281328
#define TLI_DEFINE_SLEEFGNUABI_SCALABLE_VECFUNCS_RISCV
13291329
#define TLI_DEFINE_VECFUNC(SCAL, VEC, VF, MASK, VABI_PREFIX) \
13301330
{SCAL, VEC, VF, MASK, VABI_PREFIX},
@@ -1382,7 +1382,7 @@ void TargetLibraryInfoImpl::addVectorizableFunctionsFromVecLib(
13821382
addVectorizableFunctions(VecFuncs_SLEEFGNUABI_VFScalable);
13831383
break;
13841384
case llvm::Triple::riscv64:
1385-
addVectorizableFunctions(VecFuncs_SKEEFGNUABI_VFScalableRISCV);
1385+
addVectorizableFunctions(VecFuncs_SLEEFGNUABI_VFScalableRISCV);
13861386
break;
13871387
}
13881388
break;

0 commit comments

Comments
 (0)