diff options
author | Mike Pagano <mpagano@gentoo.org> | 2023-01-22 10:32:07 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2023-01-22 10:32:07 -0500 |
commit | 28f6e4f1086de2b73c9ba9207c0f97aff9a30844 (patch) | |
tree | 6711cdbc2e9ad458a5ebf68e1565ec67fe9377f9 | |
parent | Linux patch 5.15.89 (diff) | |
download | linux-patches-28f6e4f1086de2b73c9ba9207c0f97aff9a30844.tar.gz linux-patches-28f6e4f1086de2b73c9ba9207c0f97aff9a30844.tar.bz2 linux-patches-28f6e4f1086de2b73c9ba9207c0f97aff9a30844.zip |
gcc-plugins: Reorganize gimple includes for GCC 13
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
-rw-r--r-- | 0000_README | 4 | ||||
-rw-r--r-- | 2930_gcc-plugins-Reorg-gimple-incs-for-gcc-13.patch | 24 |
2 files changed, 28 insertions, 0 deletions
diff --git a/0000_README b/0000_README index 151d7604..3b9256c7 100644 --- a/0000_README +++ b/0000_README @@ -411,6 +411,10 @@ Patch: 2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch From: https://lore.kernel.org/linux-bluetooth/20190522070540.48895-1-marcel@holtmann.org/raw Desc: Bluetooth: Check key sizes only when Secure Simple Pairing is enabled. See bug #686758 +Patch: 2930_gcc-plugins-Reorg-gimple-incs-for-gcc-13.patch +From: https://lore.kernel.org/lkml/mhng-8bc81919-3023-4d72-bd44-2443606b4fd7@palmer-ri-x1c9a/T/ +Desc: gcc-plugins: Reorganize gimple includes for GCC 13 + Patch: 2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch From: https://bugs.gentoo.org/710790 Desc: tmp513 requies REGMAP_I2C to build. Select it by default in Kconfig. See bug #710790. Thanks to Phil Stracchino diff --git a/2930_gcc-plugins-Reorg-gimple-incs-for-gcc-13.patch b/2930_gcc-plugins-Reorg-gimple-incs-for-gcc-13.patch new file mode 100644 index 00000000..f4be9caa --- /dev/null +++ b/2930_gcc-plugins-Reorg-gimple-incs-for-gcc-13.patch @@ -0,0 +1,24 @@ +--- a/scripts/gcc-plugins/gcc-common.h 2023-01-22 10:24:56.136222268 -0500 ++++ b/scripts/gcc-plugins/gcc-common.h 2023-01-22 10:27:14.056668630 -0500 +@@ -77,7 +77,9 @@ + #include "varasm.h" + #include "stor-layout.h" + #include "internal-fn.h" ++#include "gimple.h" + #include "gimple-expr.h" ++#include "gimple-iterator.h" + #include "gimple-fold.h" + #include "context.h" + #include "tree-ssa-alias.h" +@@ -91,11 +93,9 @@ + #include "tree-eh.h" + #include "stmt.h" + #include "gimplify.h" +-#include "gimple.h" + #include "tree-ssa-operands.h" + #include "tree-phinodes.h" + #include "tree-cfg.h" +-#include "gimple-iterator.h" + #include "gimple-ssa.h" + #include "ssa-iterators.h" + |