From 79183161c98bb3b7ed21cded69378c46c793515c Mon Sep 17 00:00:00 2001 From: "Larsen, Steffen" Date: Thu, 23 May 2024 00:10:43 -0700 Subject: [PATCH] [SYCL][E2E] Fix sycl/sycl.hpp use in sub_byte_bitreverse.hpp https://github.com/intel/llvm/pull/13875 made sycl/sycl.hpp include in E2E tests prohibited. However, LLVMIntrinsicLowering/sub_byte_bitreverse.cpp snuck in without this check. This commit fixes the includes in that test. Signed-off-by: Larsen, Steffen --- sycl/test-e2e/LLVMIntrinsicLowering/sub_byte_bitreverse.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sycl/test-e2e/LLVMIntrinsicLowering/sub_byte_bitreverse.cpp b/sycl/test-e2e/LLVMIntrinsicLowering/sub_byte_bitreverse.cpp index b576e5bd5db1b..e7e02c4d60ba3 100644 --- a/sycl/test-e2e/LLVMIntrinsicLowering/sub_byte_bitreverse.cpp +++ b/sycl/test-e2e/LLVMIntrinsicLowering/sub_byte_bitreverse.cpp @@ -45,7 +45,8 @@ #include "common.hpp" #include #include -#include +#include +#include using namespace sycl;