Blame SOURCES/gdb-6.8-sparc64-silence-memcpy-check.patch

7bc85d
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
7bc85d
From: Fedora GDB patches <invalid@email.com>
7bc85d
Date: Fri, 27 Oct 2017 21:07:50 +0200
7bc85d
Subject: gdb-6.8-sparc64-silence-memcpy-check.patch
7bc85d
7bc85d
;; Silence memcpy check which returns false positive (sparc64)
7bc85d
;;=push: But it is just a GCC workaround, look up the existing GCC PR for it.
7bc85d
7bc85d
diff --git a/gdb/sparc-tdep.c b/gdb/sparc-tdep.c
7bc85d
--- a/gdb/sparc-tdep.c
7bc85d
+++ b/gdb/sparc-tdep.c
7bc85d
@@ -1462,6 +1462,7 @@ sparc32_store_return_value (struct type *type, struct regcache *regcache,
7bc85d
   if (sparc_floating_p (type) || sparc_complex_floating_p (type))
7bc85d
     {
7bc85d
       /* Floating return values.  */
7bc85d
+      len = (len <= 8) ? len : 8;
7bc85d
       memcpy (buf, valbuf, len);
7bc85d
       regcache->cooked_write (SPARC_F0_REGNUM, buf);
7bc85d
       if (len > 4)