summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-28 06:34:11 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-28 06:34:11 +0000
commitbe41b250e05f78dbc2e8bf9aa37a8082ee658ac4 (patch)
tree48dfa6b8718d9d2bf78a9ba29abd7704777c3128 /autoconf
parent93d416f060108c01f4f8af7ba2202c78577ef02b (diff)
Make the 64-bit x86 target named "x86_64" instead of "AMD64".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 59253c51d2a..227aa62f6d8 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="AMD64" ;;
+ 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" ;;
@@ -211,7 +211,7 @@ else
x86) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
Sparc) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
PowerPC) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
- AMD64) AC_SUBST(JIT,[[]]) ;;
+ x86_64) AC_SUBST(JIT,[[]]) ;;
*) AC_SUBST(JIT,[[]]) ;;
esac
fi