Skip to content

Commit 33b9669

Browse files
author
Pavel V Chupin
committed
[SYCL][clang] Updating test enforcing opaque pointers
They are off by default in this project, unlike upstream
1 parent fbed3f9 commit 33b9669

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/CodeGenCXX/builtin-std-move.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang_cc1 -triple=x86_64-linux-gnu -emit-llvm -o - -std=c++17 %s | FileCheck %s --implicit-check-not=@_ZSt4move
1+
// RUN: %clang_cc1 -triple=x86_64-linux-gnu -emit-llvm -opaque-pointers -o - -std=c++17 %s | FileCheck %s --implicit-check-not=@_ZSt4move
22

33
namespace std {
44
template<typename T> constexpr T &&move(T &val) { return static_cast<T&&>(val); }

0 commit comments

Comments
 (0)