https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61929

Charles Greathouse <gcc at crg4 dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.8.3, 4.9.1

--- Comment #2 from Charles Greathouse <gcc at crg4 dot com> ---
Minimal testcase (original function was ries_to_digits):

void generateICE(char *s, int p)
{
    int i;
    for (i = p; i > 0; i--) {
        if (s[i] < '0') s[i-1]--;
    }
}

Reply via email to