public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PUSHED/OBV] Fix up HAS_SVE_STATE macro
@ 2018-06-22 11:08 Alan Hayward
  0 siblings, 0 replies; only message in thread
From: Alan Hayward @ 2018-06-22 11:08 UTC (permalink / raw)
  To: gdb-patches; +Cc: nd, Alan Hayward

Prevents build break on aarch64 Suse.

2018-06-22  Alan Hayward  <alan.hayward@arm.com>

gdb/
	* nat/aarch64-sve-linux-ptrace.h (HAS_SVE_STATE): Use &.
---
 gdb/ChangeLog                      | 4 ++++
 gdb/nat/aarch64-sve-linux-ptrace.h | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 1221a54d03..de9127f70f 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-06-22  Alan Hayward  <alan.hayward@arm.com>
+
+	* nat/aarch64-sve-linux-ptrace.h (HAS_SVE_STATE): Use &.
+
 2018-06-21  Pedro Alves  <palves@redhat.com>
 
 	* ada-lang.h (ada_get_task_number): Take a thread_info pointer
diff --git a/gdb/nat/aarch64-sve-linux-ptrace.h b/gdb/nat/aarch64-sve-linux-ptrace.h
index 5a7186b7aa..029e753ffe 100644
--- a/gdb/nat/aarch64-sve-linux-ptrace.h
+++ b/gdb/nat/aarch64-sve-linux-ptrace.h
@@ -32,7 +32,7 @@
 /* Indicates whether a SVE ptrace header is followed by SVE registers or a
    fpsimd structure.  */
 
-#define HAS_SVE_STATE(header) ((header).flags && SVE_PT_REGS_SVE)
+#define HAS_SVE_STATE(header) ((header).flags & SVE_PT_REGS_SVE)
 
 /* Read VQ for the given tid using ptrace.  If SVE is not supported then zero
    is returned (on a system that supports SVE, then VQ cannot be zero).  */
-- 
2.15.2 (Apple Git-101.1)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-06-22 11:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-22 11:08 [PUSHED/OBV] Fix up HAS_SVE_STATE macro Alan Hayward

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).