diff options
author | Zach van Rijn <me@zv.io> | 2022-01-03 16:43:31 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-05-01 17:05:38 -0500 |
commit | 89cfefa32d245642eccf2ba02e1c7afd005abdc1 (patch) | |
tree | e843f8c84eb480a21e435586dd78bfb74a5f7383 /system/gcc/backport-r268048-memcpy-bounds.patch | |
parent | de28c81fe1f3fc591a3fc5fa84cc97ac3f3a0775 (diff) | |
download | packages-89cfefa32d245642eccf2ba02e1c7afd005abdc1.tar.gz packages-89cfefa32d245642eccf2ba02e1c7afd005abdc1.tar.bz2 packages-89cfefa32d245642eccf2ba02e1c7afd005abdc1.tar.xz packages-89cfefa32d245642eccf2ba02e1c7afd005abdc1.zip |
system/gcc: bump { 8.3.0 --> 8.5.0 }
Diffstat (limited to 'system/gcc/backport-r268048-memcpy-bounds.patch')
-rw-r--r-- | system/gcc/backport-r268048-memcpy-bounds.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/system/gcc/backport-r268048-memcpy-bounds.patch b/system/gcc/backport-r268048-memcpy-bounds.patch deleted file mode 100644 index eebecd832..000000000 --- a/system/gcc/backport-r268048-memcpy-bounds.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88273 - -GCC 8.2+ fails to build 32-bit PowerPC kernel due to this. - ---- trunk/gcc/gimple-ssa-warn-restrict.c 2019/01/17 16:33:55 268037 -+++ trunk/gcc/gimple-ssa-warn-restrict.c 2019/01/17 22:52:47 268048 -@@ -319,13 +319,9 @@ - offrange[0] += offset_int::from (min, SIGNED); - offrange[1] += offset_int::from (max, SIGNED); - } -- else if (rng == VR_ANTI_RANGE) -- { -- offrange[0] += offset_int::from (max + 1, SIGNED); -- offrange[1] += offset_int::from (min - 1, SIGNED); -- } - else - { -+ /* Handle an anti-range the same as no range at all. */ - gimple *stmt = SSA_NAME_DEF_STMT (offset); - tree type; - if (is_gimple_assign (stmt) |