From: Paul Eggert Date: Wed, 7 Jun 2006 05:58:57 +0000 (+0000) Subject: Don't claim x86 behavior is erroneous in a comment. X-Git-Tag: v6.0~321 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0eef2e1e8b40c36244311e4180fb5dd76ea50fa6;p=thirdparty%2Fcoreutils.git Don't claim x86 behavior is erroneous in a comment. --- diff --git a/src/expr.c b/src/expr.c index ab36350e58..7b5c77be6f 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;