]> granicus.if.org Git - postgresql/commit
Return implementation defined value if pg_$op_s$bit_overflow overflows.
authorAndres Freund <andres@anarazel.de>
Wed, 14 Feb 2018 22:17:28 +0000 (14:17 -0800)
committerAndres Freund <andres@anarazel.de>
Wed, 14 Feb 2018 22:23:57 +0000 (14:23 -0800)
commit6d7dc5350042697bbb141a7362649db7fa67bd55
treeefb1ae413553a0e22c758dd4ea494ec3c6281f8a
parent9a725f7b5cb7e8c8894ef121b49eff9c265245c8
Return implementation defined value if pg_$op_s$bit_overflow overflows.

Some older compilers otherwise sometimes complain about undefined
values, even though the return value should not be used in the
overflow case.  We assume that any decent compiler will optimize away
the unnecessary assignment in performance critical cases.

We do not want to restrain the returned value to a specific value,
e.g. 0 or the wrapped-around value, because some fast ways to
implement overflow detecting math do not easily allow for
that (e.g. msvc intrinsics).  As the function documentation already
documents the returned value in case of intrinsics to be
implementation defined, no documentation has to be updated.

Per complaint from Tom Lane and his buildfarm member prairiedog.

Author: Andres Freund
Discussion: https://postgr.es/m/18169.1513958454@sss.pgh.pa.us
src/include/common/int.h