[Bug optimization/11741] internal compiler error at gcse.c:5318
dhazeghi at yahoo dot com
gcc-bugzilla@gcc.gnu.org
Sun Aug 24 17:15:00 GMT 2003
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
dhazeghi at yahoo dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
GCC build triplet|FreeBSD 5.1-CURRENT i386 |
GCC host triplet|FreeBSD 5.1-CURRENT i386 |
GCC target triplet|FreeBSD 5.1-CURRENT i386 |i?86-*-*
------- Additional Comments From dhazeghi at yahoo dot com 2003-08-24 17:15 -------
Slightly more reduced. Bug happens on Linux too, so expanding target summary.
char* g_strdup (const char *str);
void *memcpy(void * , const void * , unsigned int);
unsigned int strlen(const char *);
void convert_label_with_ampersand (const char * _label)
{
char *p;
char *label = g_strdup (_label);
for (p = label;; p++) {
if (*p == '&') {
memcpy (p, p + 1, strlen (p));
if (*p == '&')
continue;
}
}
}
More information about the Gcc-bugs
mailing list