Add relocation types for Hexagon processor; patch by Sidney Manning <sidneym@codeauro...
[oota-llvm.git] / include / llvm / Support / Compiler.h
index 0ae02e85c574b5d00315e8b5f7b9cfb9d32d6c12..5564db79c21d31d1b3a01049b6303d8a936a5416 100644 (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