-
Notifications
You must be signed in to change notification settings - Fork 2
riscv_opcode_fix_vmsge_vx
Tsukasa OI edited this page Aug 11, 2023
·
2 revisions
- Status: Merged for Binutils 2.42
- Branch:
riscv-opcode-fix-vmsge-vx - Tracking PR: #119 (view Pull Request and Diff)
- Mailing List:
- PATCH v1 (2023-08-06)
Their check_func should be match_never, not match_opcode.
The reasons this error did not cause any disassembler errors are:
- The problem will not reproduce if
no-aliasesis specified (because macro instructions are handled as aliases). - If not, all affected compressed instructions or their aliases precede before
vmsge{,u}.vxmacro instructions.
However, it'll easily break if we reorder opcode entries.
This commit fixes this issue before the accident occurs.