This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 8 Aug 2007 14:35:21 -0000
- Subject: [Bug tree-optimization/33017] [4.3 Regression] tree check fail for legal code
- References: <bug-33017-9596@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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