------- Comment #3 from pinskia at gcc dot gnu dot org 2007-08-08 14:35 ------- Here is a reduced testcase: int ctl2_encode_string( const char *string, char **result) { int length; static char converted_string[0x104]; int offset; length = strlen(string); for(offset = 0; offset < 4; offset++) converted_string[length + offset + 2] = 0x57; }
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33017