Skip to content

Commit 7640278

Browse files
authored
[SYCL][test-e2e] Fix how clang++ is called (intel#11785) (intel#18168)
Jira: https://jira.devtools.intel.com/browse/CMPLRLLVM-53056 xmain commit: [3b97561](intel-restricted/applications.compilers.llvm-project@3b97561) It was part of a pulldown. This test called clang++ directly. I think we need to use %clangxx Thanks Signed-off-by: Arvind Sudarsanam <[email protected]>
1 parent c51b53d commit 7640278

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/test-e2e/Basic/spirv_device_obj_smoke.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// UNSUPPORTED: cuda || hip
2-
// RUN: clang++ -fsycl -fsycl-device-obj=spirv -c -o %t.o %s
3-
// RUN: clang++ -fsycl -o %t.out %t.o
2+
// RUN: %clangxx -fsycl -fsycl-device-obj=spirv -c -o %t.o %s
3+
// RUN: %clangxx -fsycl -o %t.out %t.o
44
// RUN: %{run} %t.out
55

66
// This test verifies SPIR-V based fat objects.

0 commit comments

Comments
 (0)