We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbed3f9 commit 33b9669Copy full SHA for 33b9669
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 -triple=x86_64-linux-gnu -emit-llvm -opaque-pointers -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