Skip to content

Commit

Permalink
Update test to handle opaque pointers flag flip.
Browse files Browse the repository at this point in the history
  • Loading branch information
zygoloid committed Apr 15, 2022
1 parent a5b7ea0 commit a571f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/test/CodeGenCXX/builtin-std-move.cpp
@@ -1,4 +1,4 @@
// 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

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

0 comments on commit a571f82

Please sign in to comment.