mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-14 22:49:09 +00:00
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.
This commit is contained in:
parent
42868dce3e
commit
de589d04f3
@ -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.
|
||||
|
@ -144,7 +144,7 @@ static int debug_hw_points;
|
||||
ptrace calls to the kernel, i.e. avoid asking the kernel to write
|
||||
to the debug registers with unchanged values. */
|
||||
|
||||
typedef unsigned LONGEST dr_changed_t;
|
||||
typedef ULONGEST dr_changed_t;
|
||||
|
||||
/* Set each of the lower M bits of X to 1; assert X is wide enough. */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user