Fix trivial typo in llvm_move.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156288 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John McCall 2012-05-07 06:00:23 +00:00
parent ef2b8bda02
commit 86062e6782

View File

@ -33,7 +33,7 @@
/// llvm_move - Expands to ::std::move if the compiler supports
/// r-value references; otherwise, expands to the argument.
#if LLVM_USE_RVALUE_REFERENCES
#define llvm_move(value) (::std::move(arg))
#define llvm_move(value) (::std::move(value))
#else
#define llvm_move(value) (value)
#endif