We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b7ea0 commit a571f82Copy full SHA for a571f82
clang/test/CodeGenCXX/builtin-std-move.cpp
@@ -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
+// RUN: %clang_cc1 -no-opaque-pointers -triple=x86_64-linux-gnu -emit-llvm -o - -std=c++17 %s | FileCheck %s --implicit-check-not=@_ZSt4move
2
3
namespace std {
4
template<typename T> constexpr T &&move(T &val) { return static_cast<T&&>(val); }
0 commit comments