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

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