From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id D171938582AE; Wed, 7 Feb 2024 14:08:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D171938582AE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707314931; bh=B324/lkvhOPEZSOtvsBxvLh9J8+GThj2do0+VhIt9Dg=; h=From:To:Subject:Date:From; b=J+hlSIG5MDSoROKzPCxnRwjun5RNx6W+eH5cdTHiz67Zt35PDxKXgR3ozC9lSO92D ylSbgxZkdPMy+UdJXFWzTZtodD+SSrGiT/Ag6a8ulTzYNGmBmB/GtDNlikWJgFbRPy ZkUTQDGA4piiO1abvAjKZrSTUmTEZ+yezB6irzDA= 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: bcc0317ceb72b64f5f93f1ef9b60460c36c9805b X-Git-Newrev: 21493093092b583365e2cd797ccdee27cbb5945e Message-Id: <20240207140851.D171938582AE@sourceware.org> Date: Wed, 7 Feb 2024 14:08:51 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=21493093092b583365e2cd797ccdee27cbb5945e commit 21493093092b583365e2cd797ccdee27cbb5945e 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 2eaa33039f..6898f0cec6 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 9edd6b76c6..809400e4c9 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 59f8018d13..65388c97fa 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 11e35815c1..23fc492025 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