[compiler-rt] r244475 - Fix typo.

Filipe Cabecinhas via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 10 11:26:29 PDT 2015


Author: filcab
Date: Mon Aug 10 13:26:29 2015
New Revision: 244475

URL: http://llvm.org/viewvc/llvm-project?rev=244475&view=rev
Log:
Fix typo.

Modified:
    compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake

Modified: compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake?rev=244475&r1=244474&r2=244475&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake (original)
+++ compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake Mon Aug 10 13:26:29 2015
@@ -26,7 +26,7 @@ function(add_compiler_rt_object_librarie
       set(libnames ${libnames} ${libname})
       set(extra_cflags_${libname} ${TARGET_${arch}_CFLAGS})
       if(NOT CAN_TARGET_${arch})
-        message(FATAL_ERROR "Archtecture ${arch} can't be targeted")
+        message(FATAL_ERROR "Architecture ${arch} can't be targeted")
         return()
       endif()
     endforeach()
@@ -80,7 +80,7 @@ macro(add_compiler_rt_runtime name arch
       LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}
       RUNTIME DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR})
   else()
-    message(FATAL_ERROR "Archtecture ${arch} can't be targeted")
+    message(FATAL_ERROR "Architecture ${arch} can't be targeted")
   endif()
 endmacro()
 




More information about the llvm-commits mailing list