Manuel López-Ibáñez writes:
> +/* Assert that becomes a conditional expression when not checking.
For the sake of clarity towards newcomers, I'd say:
Assert that becomes a conditional expression when checking is
disabled at compilation time.
> + Use this for conditions that should n
The following patch adds linemap_assert_fails(), which is an assert
meant to be used in conditions such as:
if (linemap_assert_fails(EXPR))
handle_error();
This is useful for ICEs that we would like to detect during the
development phase but that could be handled gracefully. In the case of
line