summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-06-07 05:58:57 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-06-07 05:58:57 +0000
commit0eef2e1e8b40c36244311e4180fb5dd76ea50fa6 (patch)
tree0c66c5650cc370eca616b041f547e2018ae2ad9b /src/expr.c
parent8863262663aecbef559d45090ab256be1ae668d2 (diff)
downloadcoreutils-0eef2e1e8b40c36244311e4180fb5dd76ea50fa6.tar.xz
Don't claim x86 behavior is erroneous in a comment.
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c6
1 files changed, 3 insertions, 3 deletions
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;