diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-08-12 18:20:14 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-08-12 18:20:14 +0000 |
commit | fcb09a755e44fc386d8a2f097da07ff533d8466c (patch) | |
tree | 3d15a35b8ffcc1afdda3cee50cd4fce606553073 | |
parent | a6f3e723d387ad5292f1a7519e5204d53510d081 (diff) | |
download | gdb-fcb09a755e44fc386d8a2f097da07ff533d8466c.zip gdb-fcb09a755e44fc386d8a2f097da07ff533d8466c.tar.gz gdb-fcb09a755e44fc386d8a2f097da07ff533d8466c.tar.bz2 |
* ppc-linux-nat.c (ppc_linux_get_hwcap): Really get AT_HWCAP.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/ppc-linux-nat.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f734aed..5881b8a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-08-12 Ulrich Weigand <uweigand@de.ibm.com> + + * ppc-linux-nat.c (ppc_linux_get_hwcap): Really get AT_HWCAP. + 2008-08-12 Pedro Alves <pedro@codesourcery.com> Add no-ack mode to the remote protocol --- optionally stop ACKing diff --git a/gdb/ppc-linux-nat.c b/gdb/ppc-linux-nat.c index c4652f7..db070b9 100644 --- a/gdb/ppc-linux-nat.c +++ b/gdb/ppc-linux-nat.c @@ -835,7 +835,7 @@ unsigned long ppc_linux_get_hwcap (void) { CORE_ADDR field; - if (target_auxv_search (¤t_target, AT_PLATFORM, &field)) + if (target_auxv_search (¤t_target, AT_HWCAP, &field)) return (unsigned long) field; return 0; |