summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-base_compiler__specific.h
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-base_compiler__specific.h')
-rw-r--r--www/chromium/files/patch-base_compiler__specific.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/www/chromium/files/patch-base_compiler__specific.h b/www/chromium/files/patch-base_compiler__specific.h
index 6a08ef993574..01643d0d5afd 100644
--- a/www/chromium/files/patch-base_compiler__specific.h
+++ b/www/chromium/files/patch-base_compiler__specific.h
@@ -1,4 +1,4 @@
---- base/compiler_specific.h.orig 2023-04-28 17:01:32 UTC
+--- base/compiler_specific.h.orig 2024-01-30 07:53:34 UTC
+++ base/compiler_specific.h
@@ -41,9 +41,9 @@
// Annotate a function indicating it should not be inlined.
@@ -12,8 +12,8 @@
#define NOINLINE __attribute__((noinline))
#elif defined(COMPILER_MSVC)
#define NOINLINE __declspec(noinline)
-@@ -51,9 +51,9 @@
- #define NOINLINE
+@@ -60,9 +60,9 @@
+ #define NOOPT
#endif
-#if defined(__clang__) && defined(NDEBUG) && HAS_ATTRIBUTE(always_inline)
@@ -24,7 +24,7 @@
#define ALWAYS_INLINE inline __attribute__((__always_inline__))
#elif defined(COMPILER_MSVC) && defined(NDEBUG)
#define ALWAYS_INLINE __forceinline
-@@ -69,7 +69,7 @@
+@@ -78,7 +78,7 @@
// prevent code folding, see NO_CODE_FOLDING() in base/debug/alias.h.
// Use like:
// NOT_TAIL_CALLED void FooBar();