diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2024-12-17 05:56:53 +0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2024-12-18 01:22:48 +0800 |
commit | 0cc88d232757d4cbd771fed695d30af79674eb45 (patch) | |
tree | 7fa2d583c240cb4ff470b971373eb7498453c9e0 | |
parent | 215447f5cbcf1a494cded57734f68d7f9c2b0dc0 (diff) | |
download | glibc-0cc88d232757d4cbd771fed695d30af79674eb45.zip glibc-0cc88d232757d4cbd771fed695d30af79674eb45.tar.gz glibc-0cc88d232757d4cbd771fed695d30af79674eb45.tar.bz2 |
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 <test-double-vlen4.h>
| ^
1 error generated.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Sam James <sam@gentoo.org>
6 files changed, 6 insertions, 6 deletions
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 c7ca36e..d030d09 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 <https://www.gnu.org/licenses/>. */ -#include "test-double-vlen4.h" +#include <test-double-vlen4.h> #include "test-math-vector-sincos.h" #include <immintrin.h> diff --git a/sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c b/sysdeps/x86_64/fpu/test-double-vlen4-wrappers.c index 4f89ccb..aa5c882 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 <https://www.gnu.org/licenses/>. */ -#include "test-double-vlen4.h" +#include <test-double-vlen4.h> #include "test-math-vector-sincos.h" #include <immintrin.h> diff --git a/sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c b/sysdeps/x86_64/fpu/test-double-vlen8-wrappers.c index 6c18286..9478349 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 <https://www.gnu.org/licenses/>. */ -#include "test-double-vlen8.h" +#include <test-double-vlen8.h> #include "test-math-vector-sincos.h" #include <immintrin.h> diff --git a/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c b/sysdeps/x86_64/fpu/test-float-vlen16-wrappers.c index 241857b..da17bcc 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 <https://www.gnu.org/licenses/>. */ -#include "test-float-vlen16.h" +#include <test-float-vlen16.h> #include "test-math-vector-sincos.h" #include <immintrin.h> 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 043830b..a6ef2b4 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 <https://www.gnu.org/licenses/>. */ -#include "test-float-vlen8.h" +#include <test-float-vlen8.h> #include "test-math-vector-sincos.h" #include <immintrin.h> diff --git a/sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c b/sysdeps/x86_64/fpu/test-float-vlen8-wrappers.c index e71faeb..7fd1ef0 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 <https://www.gnu.org/licenses/>. */ -#include "test-float-vlen8.h" +#include <test-float-vlen8.h> #include "test-math-vector-sincos.h" #include <immintrin.h> |