Skip to content

Commit a571f82

Browse files
committed
Update test to handle opaque pointers flag flip.
1 parent a5b7ea0 commit a571f82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
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 -no-opaque-pointers -triple=x86_64-linux-gnu -emit-llvm -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)