diff options
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/ChangeLog | 5 | ||||
-rw-r--r-- | cpu/mep.opc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/cpu/ChangeLog b/cpu/ChangeLog index 30b884c..41ff181 100644 --- a/cpu/ChangeLog +++ b/cpu/ChangeLog @@ -1,3 +1,8 @@ +2020-06-02 Jose E. Marchesi <jose.marchesi@oracle.com> + + * mep.opc (print_slot_insn): Pass the insn endianness to + cgen_get_insn_value. + 2020-05-28 Jose E. Marchesi <jose.marchesi@oracle.com> David Faust <david.faust@oracle.com> diff --git a/cpu/mep.opc b/cpu/mep.opc index 34e279d..5a4c93d 100644 --- a/cpu/mep.opc +++ b/cpu/mep.opc @@ -1271,7 +1271,7 @@ print_slot_insn (CGEN_CPU_DESC cd, CGEN_INSN_INT insn_value; CGEN_EXTRACT_INFO ex_info; - insn_value = cgen_get_insn_value (cd, buf, 32); + insn_value = cgen_get_insn_value (cd, buf, 32, cd->insn_endian); /* Fill in ex_info fields like read_insn would. Don't actually call read_insn, since the incoming buffer is already read (and possibly |