Skip to content

Commit

Permalink
RISC-V: Remove support for non-existing 'Zve32d'
Browse files Browse the repository at this point in the history
Since this "extension" does not exist (on the other hand, 'Zve64d' exists)
and it's not useful if we keep it (as other code portions just ignore
"zve32d"), this commit just removes it.

bfd/ChangeLog:

	* elfxx-riscv.c (riscv_supported_std_z_ext): Remove 'Zve32d'
	extension from the list.
  • Loading branch information
a4lg committed Aug 11, 2023
1 parent 6085bf5 commit 5b576ed
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bfd/elfxx-riscv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,6 @@ static struct riscv_supported_ext riscv_supported_std_z_ext[] =
{"zkt", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },
{"zve32x", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },
{"zve32f", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },
{"zve32d", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },
{"zve64x", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },
{"zve64f", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },
{"zve64d", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },
Expand Down

0 comments on commit 5b576ed

Please sign in to comment.