This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug optimization/11741] internal compiler error at gcse.c:5318


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11741



------- Additional Comments From pinskia at gcc dot gnu dot org  2003-08-24 17:22 -------
Even more reduced:
char* g_strdup (const char *str);

char *convert_label_with_ampersand (const char * _label)
{
    char *p;
    char *label = g_strdup (_label);
    for (p = label;; p++) {
            memcpy (p, p + 1, strlen (p));
       }
    return label;
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]