This is the mail archive of the gcc@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]

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?



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