aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-11-20 22:40:55 +0000
committerWarner Losh <imp@FreeBSD.org>2023-11-27 05:24:02 +0000
commit9e555522084871b341e81269fa599c707133ae58 (patch)
tree52778a3e75394cd52c6dd8cc8caadfa7cf646180
parenteaaa7ca0c38c014f2f2c0a06b82f83baa03b2d60 (diff)
downloadsrc-9e555522084871b341e81269fa599c707133ae58.tar.gz
src-9e555522084871b341e81269fa599c707133ae58.zip
cdefs: Remove vararg related defines, they are unused.
Remove __GNUCLIKE_BUILTIN_VARARGS, __GNUCLIKE_BUILTIN_STDARG, __GNUCLIKE_BUILTIN_VAALIST, __GNUC_VA_LIST_COMPATIBILITY: they are unused. Also remove them from the generated cryptodevh.py script. PR: 275221 (exp-run) Sponsored by: Netflix
-rw-r--r--sys/sys/cdefs.h8
-rw-r--r--tests/sys/opencrypto/cryptodevh.py4
2 files changed, 0 insertions, 12 deletions
diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h
index 3d6eb5a27c77..f93a70245e5e 100644
--- a/sys/sys/cdefs.h
+++ b/sys/sys/cdefs.h
@@ -74,14 +74,6 @@
#if defined(__GNUC__)
-#if (__GNUC_MINOR__ > 95 || __GNUC__ >= 3)
-#define __GNUCLIKE_BUILTIN_VARARGS 1
-#define __GNUCLIKE_BUILTIN_STDARG 1
-#define __GNUCLIKE_BUILTIN_VAALIST 1
-#endif
-
-#define __GNUC_VA_LIST_COMPATIBILITY 1
-
/*
* Compiler memory barriers, specific to gcc and clang.
*/
diff --git a/tests/sys/opencrypto/cryptodevh.py b/tests/sys/opencrypto/cryptodevh.py
index 551486e67fa4..79af275ce340 100644
--- a/tests/sys/opencrypto/cryptodevh.py
+++ b/tests/sys/opencrypto/cryptodevh.py
@@ -23,10 +23,6 @@ def __has_include(x): return 0
def __has_builtin(x): return 0
-__GNUCLIKE_BUILTIN_VARARGS = 1
-__GNUCLIKE_BUILTIN_STDARG = 1
-__GNUCLIKE_BUILTIN_VAALIST = 1
-__GNUC_VA_LIST_COMPATIBILITY = 1
__GNUCLIKE_BUILTIN_NEXT_ARG = 1
__GNUCLIKE_BUILTIN_MEMCPY = 1
__CC_SUPPORTS_INLINE = 1