Skip to content

Commit 799dd6b

Browse files
committed
fixup! [RISCV] Fix wrong implication for zvknhb.
1 parent a3b9029 commit 799dd6b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/lib/Support/RISCVISAInfo.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,7 @@ static const char *ImpliedExtsZvfhmin[] = {"zve32f"};
10291029
static const char *ImpliedExtsZvkn[] = {"zvkb", "zvkned", "zvknhb", "zvkt"};
10301030
static const char *ImpliedExtsZvknc[] = {"zvbc", "zvkn"};
10311031
static const char *ImpliedExtsZvkng[] = {"zvkg", "zvkn"};
1032+
static const char *ImpliedExtsZvknhb[] = {"zve64x"};
10321033
static const char *ImpliedExtsZvks[] = {"zvkb", "zvksed", "zvksh", "zvkt"};
10331034
static const char *ImpliedExtsZvksc[] = {"zvbc", "zvks"};
10341035
static const char *ImpliedExtsZvksg[] = {"zvkg", "zvks"};
@@ -1097,6 +1098,7 @@ static constexpr ImpliedExtsEntry ImpliedExts[] = {
10971098
{{"zvkn"}, {ImpliedExtsZvkn}},
10981099
{{"zvknc"}, {ImpliedExtsZvknc}},
10991100
{{"zvkng"}, {ImpliedExtsZvkng}},
1101+
{{"zvknhb"}, {ImpliedExtsZvknhb}},
11001102
{{"zvks"}, {ImpliedExtsZvks}},
11011103
{{"zvksc"}, {ImpliedExtsZvksc}},
11021104
{{"zvksg"}, {ImpliedExtsZvksg}},

0 commit comments

Comments
 (0)