diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/cris-tdep.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5085c83..2a70bc1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2015-10-09 Simon Marchi <simon.marchi@ericsson.com> + * cris-tdep.c (struct instruction_environment): Change type of + byte_order to enum bfd_endian. + +2015-10-09 Simon Marchi <simon.marchi@ericsson.com> + * arm-linux-tdep.c (arm_canonicalize_syscall): Add enum gdb_syscall casts. diff --git a/gdb/cris-tdep.c b/gdb/cris-tdep.c index adb7221..3d53aef 100644 --- a/gdb/cris-tdep.c +++ b/gdb/cris-tdep.c @@ -485,7 +485,7 @@ struct instruction_environment int delay_slot_pc_active; int xflag_found; int disable_interrupt; - int byte_order; + enum bfd_endian byte_order; } inst_env_type; /* Machine-dependencies in CRIS for opcodes. */ |