2017-12-10 22:00:49 +00:00
|
|
|
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
|
2017-12-04 19:24:00 +00:00
|
|
|
From: Fedora GDB patches <invalid@email.com>
|
|
|
|
Date: Fri, 27 Oct 2017 21:07:50 +0200
|
|
|
|
Subject: gdb-6.8-sparc64-silence-memcpy-check.patch
|
|
|
|
|
|
|
|
FileName: gdb-6.8-sparc64-silence-memcpy-check.patch
|
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
;; Silence memcpy check which returns false positive (sparc64)
|
|
|
|
;;=push: But it is just a GCC workaround, look up the existing GCC PR for it.
|
2017-12-04 19:24:00 +00:00
|
|
|
|
2017-12-08 04:31:26 +00:00
|
|
|
diff --git a/gdb/sparc-tdep.c b/gdb/sparc-tdep.c
|
2018-05-31 18:47:56 +00:00
|
|
|
index 7300080d8d..9860e12729 100644
|
2017-12-08 04:31:26 +00:00
|
|
|
--- a/gdb/sparc-tdep.c
|
|
|
|
+++ b/gdb/sparc-tdep.c
|
2018-05-31 18:47:56 +00:00
|
|
|
@@ -1462,6 +1462,7 @@ sparc32_store_return_value (struct type *type, struct regcache *regcache,
|
2012-01-03 15:00:12 +00:00
|
|
|
if (sparc_floating_p (type) || sparc_complex_floating_p (type))
|
2008-05-15 23:27:24 +00:00
|
|
|
{
|
|
|
|
/* Floating return values. */
|
|
|
|
+ len = (len <= 8) ? len : 8;
|
|
|
|
memcpy (buf, valbuf, len);
|
|
|
|
regcache_cooked_write (regcache, SPARC_F0_REGNUM, buf);
|
|
|
|
if (len > 4)
|