Message ID | 1414964484-6270-1-git-send-email-victor.kamensky@linaro.org |
---|---|
State | New |
Headers | show |
On 3 November 2014 04:17, Yao Qi <yao@codesourcery.com> wrote: > Victor Kamensky <victor.kamensky@linaro.org> writes: > >> 2014-11-02 Victor Kamensky <victor.kamensky@linaro.org> >> >> * arm-tdep.c (extract_arm_insn): Use >> gdbarch_byte_order_for_code to read arm instruction. > > Victor, > The changelog entry should be added to the corresponding ChangeLog files > on commit. They are missing from your commits. I add them back. Sorry, I did not realize that. Will do in the future. I assume those ChangeLog pieces should not be removed from commit messages. I.e they will present in both places corresponding ChangeLog file and commit messages. Is it correct? Thanks, Victor > -- > Yao (齐尧) > > Subject: [PATCH] Add missing changelog entries > > Some changelog entries are missing in previous commits. Add them. > > diff --git a/gdb/ChangeLog b/gdb/ChangeLog > index f09715c..928efef 100644 > --- a/gdb/ChangeLog > +++ b/gdb/ChangeLog > @@ -1,3 +1,20 @@ > +2014-11-02 Victor Kamensky <victor.kamensky@linaro.org> > + > + * dwarf2loc.c (read_pieced_value): Do big endian > + processing only if gdb_regnum is not -1. > + (write_pieced_value): Ditto. > + > +2014-11-02 Victor Kamensky <victor.kamensky@linaro.org> > + > + * arm-linux-tdep.c (arm_linux_init_abi): Use > + info.byte_order_for_code to choose endianity of breakpoint > + instructions snippets. > + > +2014-11-02 Victor Kamensky <victor.kamensky@linaro.org> > + > + * arm-tdep.c (extract_arm_insn): Use > + gdbarch_byte_order_for_code to read arm instruction. > + > 2014-11-02 Doug Evans <xdje42@gmail.com> > > * mdebugread.c (parse_procedure): Delete unnecessary forward decl.
Victor Kamensky <victor.kamensky@linaro.org> writes: > I assume those ChangeLog pieces should not be > removed from commit messages. I.e they will present > in both places corresponding ChangeLog file and > commit messages. Is it correct? That is correct.
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 43520cc..9e632a7 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -13811,7 +13811,7 @@ extract_arm_insn (insn_decode_record *insn_record, uint32_t insn_size) return 1; insn_record->arm_insn = (uint32_t) extract_unsigned_integer (&buf[0], insn_size, - gdbarch_byte_order (insn_record->gdbarch)); + gdbarch_byte_order_for_code (insn_record->gdbarch)); return 0; }