On Wed, 2010-06-09 at 17:39 -0400, Jason Baron wrote:
I would expect enable_jump_label() to look something like:
#define enable_jump_label(cond_var) \
do { \
*(cond_var) = 1; \
} while (0)
That way the HAVE_JUMP_LABEL and !HAVE_JUMP_LABEL code has similar
effects.
--