From 0eef2e1e8b40c36244311e4180fb5dd76ea50fa6 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 7 Jun 2006 05:58:57 +0000 Subject: Don't claim x86 behavior is erroneous in a comment. --- src/expr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/expr.c') diff --git a/src/expr.c b/src/expr.c index ab36350e5..7b5c77be6 100644 --- a/src/expr.c +++ b/src/expr.c @@ -649,9 +649,9 @@ eval4 (bool evaluate) error (EXPR_INVALID, 0, _("division by zero")); if (l->u.i < - INTMAX_MAX && r->u.i == -1) { - /* Some x86-style hosts erroneously raise an - exception for INT_MIN / -1 and INT_MIN % -1, so - handle these problematic cases specially. */ + /* Some x86-style hosts raise an exception for + INT_MIN / -1 and INT_MIN % -1, so handle these + problematic cases specially. */ if (fxn == divide) integer_overflow ('/'); val = 0; -- cgit v1.2.3-54-g00ecf