summaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-02 04:08:41 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-02 04:08:41 +0000
commit0a3eef53d7eb99bb902c40549d4170a5048c16c0 (patch)
tree178095a36a69247047e7ac5d5e44a4417c3f5327 /include/llvm/Support
parentafad335cae8d1c811e2d4a9de843a36d36b4e8c5 (diff)
downloadllvm-0a3eef53d7eb99bb902c40549d4170a5048c16c0.tar.gz
llvm-0a3eef53d7eb99bb902c40549d4170a5048c16c0.tar.bz2
llvm-0a3eef53d7eb99bb902c40549d4170a5048c16c0.tar.xz
[C++11] Switch all uses of the llvm_move macro to use std::move
directly, and remove the macro. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/Compiler.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Support/Compiler.h b/include/llvm/Support/Compiler.h
index 153c2fd10f..c254554248 100644
--- a/include/llvm/Support/Compiler.h
+++ b/include/llvm/Support/Compiler.h
@@ -78,10 +78,6 @@
# define LLVM_HAS_VARIADIC_TEMPLATES 0
#endif
-/// llvm_move - Expands to ::std::move. This is a hold-over from when we did
-/// not support R-value references.
-#define llvm_move(value) (::std::move(value))
-
/// Expands to '&' if r-value references are supported.
///
/// This can be used to provide l-value/r-value overrides of member functions.