From: H.J. Lu Date: Mon, 16 Dec 2024 21:56:53 +0000 (+0800) Subject: Silence Clang #include_next error X-Git-Tag: glibc-2.41~338 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0cc88d232757d4cbd771fed695d30af79674eb45;p=thirdparty%2Fglibc.git Silence Clang #include_next error Use "#include <...>" to silence Clang #include_next error: In file included from ../sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c:19: ../sysdeps/x86_64/fpu/test-double-vlen4.h:19:2: error: #include_next in file found relative to primary source file or found by absolute path; will search from start of include path [-Werror,-Winclude-next-absolute-path] 19 | #include_next | ^ 1 error generated. Signed-off-by: H.J. Lu Reviewed-by: Sam James --- diff --git a/sysdeps/x86_64/fpu/test-double-vlen4-avx2-wrappers.c b/sysdeps/x86_64/fpu/test-double-vlen4-avx2-wrappers.c index c7ca36ece2..d030d090d1 100644 --- a/sysdeps/x86_64/fpu/test-double-vlen4-avx2-wrappers.c +++ b/sysdeps/x86_64/fpu/test-double-vlen4-avx2-wrappers.c @@ -16,7 +16,7 @@ License along with the GNU C Library; if not, see . */ -#include "test-double-vlen4.h" +#include #include "test-math-vector-sincos.h" #include diff --git a/sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c b/sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c index 4f89ccb3bc..aa5c882261 100644 --- a/sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c +++ b/sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c @@ -16,7 +16,7 @@ License along with the GNU C Library; if not, see . */ -#include "test-double-vlen4.h" +#include #include "test-math-vector-sincos.h" #include diff --git a/sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c b/sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c index 6c1828678b..9478349fe6 100644 --- a/sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c +++ b/sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c @@ -16,7 +16,7 @@ License along with the GNU C Library; if not, see . */ -#include "test-double-vlen8.h" +#include #include "test-math-vector-sincos.h" #include diff --git a/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c b/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c index 241857b15c..da17bcced2 100644 --- a/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c +++ b/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c @@ -16,7 +16,7 @@ License along with the GNU C Library; if not, see . */ -#include "test-float-vlen16.h" +#include #include "test-math-vector-sincos.h" #include diff --git a/sysdeps/x86_64/fpu/test-float-vlen8-avx2-wrappers.c b/sysdeps/x86_64/fpu/test-float-vlen8-avx2-wrappers.c index 043830b20a..a6ef2b4896 100644 --- a/sysdeps/x86_64/fpu/test-float-vlen8-avx2-wrappers.c +++ b/sysdeps/x86_64/fpu/test-float-vlen8-avx2-wrappers.c @@ -16,7 +16,7 @@ License along with the GNU C Library; if not, see . */ -#include "test-float-vlen8.h" +#include #include "test-math-vector-sincos.h" #include diff --git a/sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c b/sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c index e71faebcc1..7fd1ef01e3 100644 --- a/sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c +++ b/sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c @@ -16,7 +16,7 @@ License along with the GNU C Library; if not, see . */ -#include "test-float-vlen8.h" +#include #include "test-math-vector-sincos.h" #include