Skip to content

Commit 7918316

Browse files
committed
[SYCL][E2E] Fix sycl/sycl.hpp use in sub_byte_bitreverse.hpp
intel#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 <[email protected]>
1 parent 9b4bf7c commit 7918316

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sycl/test-e2e/LLVMIntrinsicLowering/sub_byte_bitreverse.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
#include "common.hpp"
4646
#include <iostream>
4747
#include <string.h>
48-
#include <sycl/sycl.hpp>
48+
#include <sycl/detail/core.hpp>
49+
#include <sycl/usm.hpp>
4950

5051
using namespace sycl;
5152

0 commit comments

Comments
 (0)