Blame SOURCES/gdb-use-pulongest-aarch64-linux-tdep.patch

190f2a
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
190f2a
From: Sergio Durigan Junior <sergiodj@redhat.com>
190f2a
Date: Thu, 6 Sep 2018 00:22:18 -0400
190f2a
Subject: gdb-use-pulongest-aarch64-linux-tdep.patch
190f2a
190f2a
;; Use pulongest in aarch64-linux-tdep.c.
190f2a
;; This patch was forgotten during the 8.2 release process, and is
190f2a
;; needed to unbreak GDB when compiling on 32-bit arches.
190f2a
190f2a
Use pulongest in aarch64-linux-tdep.c
190f2a
190f2a
While testing a patch on the buildbot, I got this error:
190f2a
190f2a
../../binutils-gdb/gdb/aarch64-linux-tdep.c: In function uint64_t aarch64_linux_core_read_vq(gdbarch*, bfd*):
190f2a
../../binutils-gdb/gdb/aarch64-linux-tdep.c:285:29: error: format %ld expects argument of type long int, but argument 2 has type uint64_t {aka long long unsigned int} [-Werror=format=]
190f2a
190f2a
This patch avoids the problem by using pulongest rather than %ld.
190f2a
This seems safe to me because, if aarch64-linux-tdep.c is included in
190f2a
the build, then ULONGEST must be a 64-bit type.
190f2a
190f2a
gdb/ChangeLog
190f2a
2018-08-15  Tom Tromey  <tom@tromey.com>
190f2a
190f2a
	* aarch64-linux-tdep.c (aarch64_linux_core_read_vq): Use pulongest.
190f2a
190f2a
diff --git a/gdb/aarch64-linux-tdep.c b/gdb/aarch64-linux-tdep.c
190f2a
--- a/gdb/aarch64-linux-tdep.c
190f2a
+++ b/gdb/aarch64-linux-tdep.c
190f2a
@@ -282,12 +282,13 @@ aarch64_linux_core_read_vq (struct gdbarch *gdbarch, bfd *abfd)
190f2a
   if (vq > AARCH64_MAX_SVE_VQ)
190f2a
     {
190f2a
       warning (_("SVE Vector length in core file not supported by this version"
190f2a
-		 " of GDB.  (VQ=%ld)"), vq);
190f2a
+		 " of GDB.  (VQ=%s)"), pulongest (vq));
190f2a
       return 0;
190f2a
     }
190f2a
   else if (vq == 0)
190f2a
     {
190f2a
-      warning (_("SVE Vector length in core file is invalid. (VQ=%ld"), vq);
190f2a
+      warning (_("SVE Vector length in core file is invalid. (VQ=%s"),
190f2a
+	       pulongest (vq));
190f2a
       return 0;
190f2a
     }
190f2a