Skip to content

Commit 31692b2

Browse files
[SYCL][E2E] Fix sycl/sycl.hpp use in sub_byte_bitreverse.hpp (#13889)
#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 7952e5a commit 31692b2

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)