From: Bruno Haible Date: Tue, 3 Apr 2007 00:12:05 +0000 (+0000) Subject: Regarding integer division by 0, x86_64 behaves like i386. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28332271070325adeb692edaa70d38638808e118;p=pspp Regarding integer division by 0, x86_64 behaves like i386. --- diff --git a/ChangeLog b/ChangeLog index 6012027761..094361f519 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-04-02 Bruno Haible + + * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like + i386. + 2007-04-01 Simon Josefsson * modules/crypto/arcfour: Moved from ../. diff --git a/m4/intdiv0.m4 b/m4/intdiv0.m4 index b8865bac20..42143e462a 100644 --- a/m4/intdiv0.m4 +++ b/m4/intdiv0.m4 @@ -51,7 +51,7 @@ int main () # 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";;