1 /* Problem originally visible on ia64.
3 There is a partial redundancy of "in + 1" that makes GCSE want to
4 transform the final while loop to
16 We miscalculate the number of loop iterations as (p - tmp) = 0
17 instead of (p - in) = 1, which results in overflow in the doloop
21 test (const char *in
, char *out
)
27 const char *p
= in
+ 1;