diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-09-21 12:44:21 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-09-21 12:44:21 +0300 |
commit | f6a89a9b3ecd956e97b61719ea0d634886ace814 (patch) | |
tree | b1665dbdfe4df1e6517e08ee4da979acda903224 /support/intprops.h | |
parent | 53175840c18d19259ec11128bdda64cad71ac8dc (diff) | |
download | egawk-f6a89a9b3ecd956e97b61719ea0d634886ace814.tar.gz egawk-f6a89a9b3ecd956e97b61719ea0d634886ace814.tar.bz2 egawk-f6a89a9b3ecd956e97b61719ea0d634886ace814.zip |
Sync files from GNULIB.
Diffstat (limited to 'support/intprops.h')
-rw-r--r-- | support/intprops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/intprops.h b/support/intprops.h index a4be30b8..9702aec4 100644 --- a/support/intprops.h +++ b/support/intprops.h @@ -342,8 +342,8 @@ Arguments should be free of side effects. */ #define _GL_BINARY_OP_OVERFLOW(a, b, op_result_overflow) \ op_result_overflow (a, b, \ - _GL_INT_MINIMUM ((1 ? 0 : (b)) + (a)), \ - _GL_INT_MAXIMUM ((1 ? 0 : (b)) + (a))) + _GL_INT_MINIMUM (_GL_INT_CONVERT (a, b)), \ + _GL_INT_MAXIMUM (_GL_INT_CONVERT (a, b))) /* Store the low-order bits of A + B, A - B, A * B, respectively, into *R. Return 1 if the result overflows. See above for restrictions. */ |