[llvm-commits] CVS: llvm/autoconf/configure.ac

Reid Spencer reid at x10sys.com
Mon Dec 27 23:56:25 PST 2004



Changes in directory llvm/autoconf:

configure.ac updated: 1.157 -> 1.158
---
Log message:

Make the x86_64 target names match between def and use. Thanks Misha.


---
Diffs of the changes:  (+1 -1)

Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.157 llvm/autoconf/configure.ac:1.158
--- llvm/autoconf/configure.ac:1.157	Tue Dec 28 00:34:11 2004
+++ llvm/autoconf/configure.ac	Tue Dec 28 01:56:14 2004
@@ -167,7 +167,7 @@
 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" ;;






More information about the llvm-commits mailing list