This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
alpha floating point broken
- From: Stephen L Moshier <steve at moshier dot net>
- To: <zack at codesourcery dot com>, <rth at redhat dot com>, <gcc at gcc dot gnu dot org>
- Date: Sat, 25 May 2002 08:16:33 -0400 (EDT)
- Subject: alpha floating point broken
Starting to check through the tm.h files that used to print floating
point to the assembler in decimal, in alpha.h I see this:
#define ASM_OUTPUT_DOUBLE(FILE,VALUE)
char str[30];
REAL_VALUE_TO_DECIMAL (VALUE, "%.20e", str);
fprintf (FILE, "\t.%c_floating %s\n", (TARGET_FLOAT_VAX)?'g':'t', str);
Since ASM_OUTPUT_DOUBLE has been deleted,
how do you propose to switch between VAX and IEEE data structures now?