Skip to content

Commit

Permalink
[RISCV] Remove redundant F and D extension implication from V. NFC
Browse files Browse the repository at this point in the history
We recently added implications for F and D to Zve32f and Zve64d
which V implies. So these have become redundant.
  • Loading branch information
topperc committed May 10, 2023
1 parent ce5ad23 commit 57a9522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Support/RISCVISAInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ Error RISCVISAInfo::checkDependency() {

static const char *ImpliedExtsD[] = {"f"};
static const char *ImpliedExtsF[] = {"zicsr"};
static const char *ImpliedExtsV[] = {"zvl128b", "zve64d", "f", "d"};
static const char *ImpliedExtsV[] = {"zvl128b", "zve64d"};
static const char *ImpliedExtsXTHeadVdot[] = {"v"};
static const char *ImpliedExtsXsfvcp[] = {"zve32x"};
static const char *ImpliedExtsZcb[] = {"zca"};
Expand Down

0 comments on commit 57a9522

Please sign in to comment.