diff options
author | Will Newton <will.newton@linaro.org> | 2014-08-21 09:38:00 +0100 |
---|---|---|
committer | Will Newton <will.newton@linaro.org> | 2014-08-21 09:38:00 +0100 |
commit | de589d04f30e658fcf4ba37a678c9487c128f97f (patch) | |
tree | adbb0e04ed63de495022a5e0fda4c37cd93dcd37 /gdb/ChangeLog | |
parent | 42868dce3e9d5c858d91f141ec920bc4629a5918 (diff) | |
download | gdb-de589d04f30e658fcf4ba37a678c9487c128f97f.zip gdb-de589d04f30e658fcf4ba37a678c9487c128f97f.tar.gz gdb-de589d04f30e658fcf4ba37a678c9487c128f97f.tar.bz2 |
gdb: Fix aarch64 native build issue caused by use of LONGEST
Recent gdb code refactor changes LONGEST from a macro to a typedef,
thus the use of it in aarch64-linux-nat.c is no longer valid.
2014-08-21 Bin Cheng <bin.cheng@arm.com>
* aarch64-linux-nat.c (dr_changed_t): Change the type from
unsigned LONGEST to ULONGEST.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8bae7d3..fae78e5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2014-08-21 Bin Cheng <bin.cheng@arm.com> + + * aarch64-linux-nat.c (dr_changed_t): Change the type from + unsigned LONGEST to ULONGEST. + 2014-08-20 Pedro Alves <palves@redhat.com> * Makefile.in (check-read1): New rule. |