[compiler-rt] r224472 - Fix obvious cut&paste error on AArch64 Compiler-RT settings

Renato Golin renato.golin at linaro.org
Wed Dec 17 15:43:40 PST 2014


Author: rengolin
Date: Wed Dec 17 17:43:39 2014
New Revision: 224472

URL: http://llvm.org/viewvc/llvm-project?rev=224472&view=rev
Log:
Fix obvious cut&paste error on AArch64 Compiler-RT settings

Modified:
    compiler-rt/trunk/cmake/config-ix.cmake

Modified: compiler-rt/trunk/cmake/config-ix.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/config-ix.cmake?rev=224472&r1=224471&r2=224472&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/config-ix.cmake (original)
+++ compiler-rt/trunk/cmake/config-ix.cmake Wed Dec 17 17:43:39 2014
@@ -149,7 +149,7 @@ else()
   elseif("${COMPILER_RT_TEST_TARGET_ARCH}" MATCHES "aarch32")
     test_target_arch(aarch32 "-march=armv8-a")
   elseif("${COMPILER_RT_TEST_TARGET_ARCH}" MATCHES "aarch64")
-    test_target_arch(aarch32 "-march=armv8-a")
+    test_target_arch(aarch64 "-march=armv8-a")
   endif()
   set(COMPILER_RT_OS_SUFFIX "")
 endif()





More information about the llvm-commits mailing list