[llvm] r272201 - [CMake] Fixing a typo
Chris Bieneman via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 8 14:22:03 PDT 2016
Author: cbieneman
Date: Wed Jun 8 16:22:03 2016
New Revision: 272201
URL: http://llvm.org/viewvc/llvm-project?rev=272201&view=rev
Log:
[CMake] Fixing a typo
This was called out on the list a long time ago and just got pointed out to me again. Need to fix it before I forget.
Modified:
llvm/trunk/cmake/modules/CrossCompile.cmake
Modified: llvm/trunk/cmake/modules/CrossCompile.cmake
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/cmake/modules/CrossCompile.cmake?rev=272201&r1=272200&r2=272201&view=diff
==============================================================================
--- llvm/trunk/cmake/modules/CrossCompile.cmake (original)
+++ llvm/trunk/cmake/modules/CrossCompile.cmake Wed Jun 8 16:22:03 2016
@@ -1,4 +1,4 @@
-function(llvm_create_cross_target_internal target_name toochain buildtype)
+function(llvm_create_cross_target_internal target_name toolchain buildtype)
if(NOT DEFINED LLVM_${target_name}_BUILD)
set(LLVM_${target_name}_BUILD "${CMAKE_BINARY_DIR}/${target_name}")
More information about the llvm-commits
mailing list