public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/14542] New: ICE on simple source
@ 2004-03-12  1:56 gcc-bugzilla at gcc dot gnu dot org
  2004-03-12  4:53 ` [Bug target/14542] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: gcc-bugzilla at gcc dot gnu dot org @ 2004-03-12  1:56 UTC (permalink / raw)
  To: gcc-bugs

Here is is ICE message:

$ m6811-elf-gcc -c -m68hc12 -O3 -fomit-frame-pointer  strcat.c
strcat.c: In function `strcat':
strcat.c:18: internal compiler error: in verify_local_live_at_start, at flow.c:546
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

Environment:
System: Linux namsh 2.6.4 #66 Thu Mar 11 22:55:35 KST 2004 i686 athlon i386 GNU/Linux
Architecture: i686

	
host: i686-pc-linux-gnu
build: i686-pc-linux-gnu
target: m6811-unknown-none
configured with: ../configure --disable-nls --target=m6811-elf --prefix=/usr/GNUHCS --program-prefix=m6811-elf- --with-gnu-ld --with-gnu-as --disable-shared --enable-languages=c,c++ --without-headers --with-newlib

How-To-Repeat:
Here is a source:

/* strcat.c */
char *strcat(char *d, const char *s)
{
    char *p = d;
    while (*d) d++;
    while ((*d = *s) != '\0') { d++; s++; }
    return p;
}
------- Additional Comments From namsh at kldp dot org  2004-03-12 01:56 -------
Fix:
	1.  Do not use '-fomit-frame-pointer'
	2.  Use '-O2' instead of '-O3'.

-- 
           Summary: ICE on simple source
           Product: gcc
           Version: 3.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: namsh at kldp dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: m6811-unknown-none


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


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2004-06-06 18:35 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-12  1:56 [Bug target/14542] New: ICE on simple source gcc-bugzilla at gcc dot gnu dot org
2004-03-12  4:53 ` [Bug target/14542] " pinskia at gcc dot gnu dot org
2004-03-19  6:45 ` kazu at cs dot umass dot edu
2004-03-19  6:45 ` pinskia at gcc dot gnu dot org
2004-06-06  9:48 ` ciceron at gcc dot gnu dot org
2004-06-06 16:56 ` cvs-commit at gcc dot gnu dot org
2004-06-06 17:01 ` cvs-commit at gcc dot gnu dot org
2004-06-06 17:03 ` ciceron at gcc dot gnu dot org
2004-06-06 18:35 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).