commit:     47a4068337a8ae12e6d4786c45fd8f6a9e5eee39
Author:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 09:22:36 2024 +0000
Commit:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 09:22:36 2024 +0000
URL:        https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=47a40683

Removed redundant patch for real this time

Removed:
2945_handle-gcc-14-last-stmt-rename.patch

Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>

 2945_handle-gcc-14-last-stmt-rename.patch | 31 -------------------------------
 1 file changed, 31 deletions(-)

diff --git a/2945_handle-gcc-14-last-stmt-rename.patch 
b/2945_handle-gcc-14-last-stmt-rename.patch
deleted file mode 100644
index b04ce8da..00000000
--- a/2945_handle-gcc-14-last-stmt-rename.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From: Kees Cook <[email protected]>
-To: [email protected]
-Cc: Kees Cook <[email protected]>, [email protected]
-Subject: [PATCH] gcc-plugins: Rename last_stmt() for GCC 14+
-Date: Thu, 10 Aug 2023 23:05:49 -0700  [thread overview]
-Message-ID: <[email protected]> (raw)
-
-In GCC 14, last_stmt() was renamed to last_nondebug_stmt(). Add a helper
-macro to handle the renaming.
-
-Cc: [email protected]
-Signed-off-by: Kees Cook <[email protected]>
----
- scripts/gcc-plugins/gcc-common.h | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/scripts/gcc-plugins/gcc-common.h 
b/scripts/gcc-plugins/gcc-common.h
-index 84c730da36dd..1ae39b9f4a95 100644
---- a/scripts/gcc-plugins/gcc-common.h
-+++ b/scripts/gcc-plugins/gcc-common.h
-@@ -440,4 +440,8 @@ static inline void debug_gimple_stmt(const_gimple s)
- #define SET_DECL_MODE(decl, mode)     DECL_MODE(decl) = (mode)
- #endif
- 
-+#if BUILDING_GCC_VERSION >= 14000
-+#define last_stmt(x)                  last_nondebug_stmt(x)
-+#endif
-+
- #endif
--- 
-2.34.1

Reply via email to