From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id 731793858297; Thu, 21 Dec 2023 18:55:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 731793858297 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1703184937; bh=hX9XUgmVUG3CeJ99RTQo2Umg2jS42Uu35qbboyZ5Gl8=; h=From:To:Subject:Date:From; b=Mu4mcxCGQpVnvd8cZ5TkgbQbKLlXuVat3pqdQRTzgQDDO9nA2ItoPbZ47BNqcNIMO umz82VZgy7lLeu+xQ10Ps3W4ry+a9kxYdsWRhKOQdskH1PHZfZ7Dl/fwkfDP8eCXV5 KA6IFB7YrYaONHIqa+DoER7f0tEgry995NPkjKf8= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] x86: Fix test-double-vlen include-next X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: e91d283f1d15e99da1529aca504f65e67ec95a45 X-Git-Newrev: c58898d6acd1f565af0e2953c7d1cd5c590823cc Message-Id: <20231221185537.731793858297@sourceware.org> Date: Thu, 21 Dec 2023 18:55:37 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c58898d6acd1f565af0e2953c7d1cd5c590823cc commit c58898d6acd1f565af0e2953c7d1cd5c590823cc Author: Adhemerval Zanella Date: Thu Mar 24 13:14:30 2022 -0300 x86: Fix test-double-vlen include-next clang issues: ../sysdeps/x86_64/fpu/test-double-vlen4.h:20: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] Instead of suppress the warning, it is simpler to just include the absolute path instead. Diff: --- sysdeps/x86_64/fpu/test-double-vlen4.h | 2 +- sysdeps/x86_64/fpu/test-double-vlen8.h | 2 +- sysdeps/x86_64/fpu/test-float-vlen16.h | 2 +- sysdeps/x86_64/fpu/test-float-vlen8.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sysdeps/x86_64/fpu/test-double-vlen4.h b/sysdeps/x86_64/fpu/test-double-vlen4.h index d845906df5..224e704bce 100644 --- a/sysdeps/x86_64/fpu/test-double-vlen4.h +++ b/sysdeps/x86_64/fpu/test-double-vlen4.h @@ -16,6 +16,6 @@ License along with the GNU C Library; if not, see . */ -#include_next +#include #define REQUIRE_AVX diff --git a/sysdeps/x86_64/fpu/test-double-vlen8.h b/sysdeps/x86_64/fpu/test-double-vlen8.h index d550804822..e404fdb7bd 100644 --- a/sysdeps/x86_64/fpu/test-double-vlen8.h +++ b/sysdeps/x86_64/fpu/test-double-vlen8.h @@ -16,6 +16,6 @@ License along with the GNU C Library; if not, see . */ -#include_next +#include #define REQUIRE_AVX512F diff --git a/sysdeps/x86_64/fpu/test-float-vlen16.h b/sysdeps/x86_64/fpu/test-float-vlen16.h index 3eddf98ea1..5125365793 100644 --- a/sysdeps/x86_64/fpu/test-float-vlen16.h +++ b/sysdeps/x86_64/fpu/test-float-vlen16.h @@ -16,6 +16,6 @@ License along with the GNU C Library; if not, see . */ -#include_next +#include #define REQUIRE_AVX512F diff --git a/sysdeps/x86_64/fpu/test-float-vlen8.h b/sysdeps/x86_64/fpu/test-float-vlen8.h index d8e46de040..aa0454835d 100644 --- a/sysdeps/x86_64/fpu/test-float-vlen8.h +++ b/sysdeps/x86_64/fpu/test-float-vlen8.h @@ -16,6 +16,6 @@ License along with the GNU C Library; if not, see . */ -#include_next +#include #define REQUIRE_AVX