Make the x86_64 target names match between def and use. Thanks Misha.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 28 Dec 2004 07:56:14 +0000 (07:56 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 28 Dec 2004 07:56:14 +0000 (07:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19170 91177308-0d34-0410-b5e6-96231b3b80d8

autoconf/configure.ac
configure

index 227aa62f6d851256bc28e4db1973e626fb7f414c..c8732b5dfdc8b46602cd99ed0238995a9f35e7e5 100644 (file)
@@ -167,7 +167,7 @@ dnl the OS.
 AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
 [case $target in
   i?86-*)                 llvm_cv_target_arch="x86" ;;
-  amd64-* | x86_64-*)     llvm_cv_target_arch="X86_64" ;;
+  amd64-* | x86_64-*)     llvm_cv_target_arch="x86_64" ;;
   sparc*-*)               llvm_cv_target_arch="Sparc" ;;
   powerpc*-*)             llvm_cv_target_arch="PowerPC" ;;
   *)                      llvm_cv_target_arch="Unknown" ;;
index 0a33a49cd40eab8bf1302a8547fd05ee273b275d..592e0d982f85ab2c61e687f711db2e25f6a64de4 100755 (executable)
--- a/configure
+++ b/configure
@@ -1779,7 +1779,7 @@ if test "${llvm_cv_target_arch+set}" = set; then
 else
   case $target in
   i?86-*)                 llvm_cv_target_arch="x86" ;;
-  amd64-* | x86_64-*)     llvm_cv_target_arch="X86_64" ;;
+  amd64-* | x86_64-*)     llvm_cv_target_arch="x86_64" ;;
   sparc*-*)               llvm_cv_target_arch="Sparc" ;;
   powerpc*-*)             llvm_cv_target_arch="PowerPC" ;;
   *)                      llvm_cv_target_arch="Unknown" ;;