From: Reid Spencer Date: Tue, 28 Dec 2004 07:56:14 +0000 (+0000) Subject: Make the x86_64 target names match between def and use. Thanks Misha. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2dc658607322cc581799128283420918374c1295;p=oota-llvm.git Make the x86_64 target names match between def and use. Thanks Misha. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19170 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 227aa62f6d8..c8732b5dfdc 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -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" ;; diff --git a/configure b/configure index 0a33a49cd40..592e0d982f8 100755 --- 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" ;;