From e58d89aa2c38ca40e68ad4e010c91239c4794e00 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Sat, 17 Jun 2023 16:52:43 -0700 Subject: [PATCH] Add C.EBREAK, C.JALR, and C.JR to overlap list This isn't a functional change; we just failed to notate that C.EBREAK and C.JALR overlap C.ADD, and C.JR overlaps C.MV. --- riscv/overlap_list.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/riscv/overlap_list.h b/riscv/overlap_list.h index fc3b3077..a30c770e 100644 --- a/riscv/overlap_list.h +++ b/riscv/overlap_list.h @@ -9,3 +9,6 @@ DECLARE_OVERLAP_INSN(cm_mva01s, EXT_ZCMP) DECLARE_OVERLAP_INSN(cm_mvsa01, EXT_ZCMP) DECLARE_OVERLAP_INSN(cm_jalt, EXT_ZCMT) DECLARE_OVERLAP_INSN(c_fsd, EXT_ZCD) +DECLARE_OVERLAP_INSN(c_ebreak, EXT_ZCA) +DECLARE_OVERLAP_INSN(c_jalr, EXT_ZCA) +DECLARE_OVERLAP_INSN(c_jr, EXT_ZCA)