Thread (3 messages) flat view 3 messages, 2 authors, 2016-06-15

Re: [PATCH] do not depend on undefined signed integer overflow

From: Erik Faye-Lund <hidden>
Date: 2016-06-15 22:49:42

On Mon, Oct 4, 2010 at 9:43 PM, Erik Faye-Lund [off-list ref] wrote:
+/*
+ * Signed integer overflow is undefined in C and some compilers take
+ * advantage of this when optimizing, so here's a helper macro to force
+ * wrapping when adding two integers. The size to wrap to is taken from
+ * the first parameter.
+ */
+#define signed_add_overflows(a, b) \
+    ((b) > ((INTMAX_MAX >> (bitsizeof(uintmax_t) - bitsizeof(a))) - (a)))
+
*Sigh*, I already see that this comment is out of date (I did a
different approach before this one). Sorry, I will fix up this comment
for the next round.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help