This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: m68k bootstrap failure
- From: Gunther Nikl <gni at gecko dot de>
- To: Bernardo Innocenti <bernie at develer dot com>
- Cc: GCC Mailing List <gcc at gcc dot gnu dot org>
- Date: Mon, 27 Oct 2003 18:13:59 +0100
- Subject: Re: m68k bootstrap failure
- References: <3F9C505B.6080703@develer.com>
On Sun, Oct 26, 2003 at 11:53:15PM +0100, Bernardo Innocenti wrote:
> do you also get this ICE during bootstrap on m68k-amigaos? [...]
This is a minimal testcase which fails when compiled with TARGET_68881
enabled (gcc -m68881 or -m680[46]0 -S foo.c):
double bar (double);
void foo (unsigned long a) {
bar (a);
}
Gunther