From 86062e6782798cb52a79fce22c1e4371148f120d Mon Sep 17 00:00:00 2001 From: John McCall Date: Mon, 7 May 2012 06:00:23 +0000 Subject: [PATCH] Fix trivial typo in llvm_move. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156288 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/Compiler.h b/include/llvm/Support/Compiler.h index 0ae02e85c57..5564db79c21 100644 --- a/include/llvm/Support/Compiler.h +++ b/include/llvm/Support/Compiler.h @@ -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 -- 2.34.1