]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Don't claim x86 behavior is erroneous in a comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 7 Jun 2006 05:58:57 +0000 (05:58 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 7 Jun 2006 05:58:57 +0000 (05:58 +0000)
src/expr.c

index ab36350e58767767684d4ec639d0f37fb55c4fe4..7b5c77be6f1ca5af624122f337a15f5318df1432 100644 (file)
@@ -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;