changeset 8613:2538349775e0

Regarding integer division by 0, x86_64 behaves like i386.
author Bruno Haible <bruno@clisp.org>
date Tue, 03 Apr 2007 00:12:05 +0000
parents d7763ad8d61f
children 907387cee4d9
files ChangeLog m4/intdiv0.m4
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-02  Bruno Haible  <bruno@clisp.org>
+
+	* m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
+	i386.
+
 2007-04-01  Simon Josefsson  <simon@josefsson.org>
 
 	* modules/crypto/arcfour: Moved from ../.
--- a/m4/intdiv0.m4
+++ b/m4/intdiv0.m4
@@ -51,7 +51,7 @@
           # Guess based on the CPU.
 changequote(,)dnl
           case "$host_cpu" in
-            alpha* | i[34567]86 | m68k | s390*)
+            alpha* | i[34567]86 | x86_64 | m68k | s390*)
               gt_cv_int_divbyzero_sigfpe="guessing yes";;
             *)
               gt_cv_int_divbyzero_sigfpe="guessing no";;