Commit 0a7ea407 by Thiemo Seufer Committed by Thiemo Seufer

mips.c (mips_file_start): Add support for flagging 32-bit code with -mfp64 floating-point.

	* config/mips/mips.c (mips_file_start): Add support for
	flagging 32-bit code with -mfp64 floating-point.

From-SVN: r130313
parent a0ba4e53
2007-11-20 Thiemo Seufer <ths@mips.com>
* config/mips/mips.c (mips_file_start): Add support for
flagging 32-bit code with -mfp64 floating-point.
2007-11-20 Jakub Jelinek <jakub@redhat.com>
PR c/34146
......@@ -7086,7 +7086,9 @@ mips_file_start (void)
#ifdef HAVE_AS_GNU_ATTRIBUTE
fprintf (asm_out_file, "\t.gnu_attribute 4, %d\n",
TARGET_HARD_FLOAT_ABI ? (TARGET_DOUBLE_FLOAT ? 1 : 2) : 3);
(TARGET_HARD_FLOAT_ABI
? (TARGET_DOUBLE_FLOAT
? ((!TARGET_64BIT && TARGET_FLOAT64) ? 4 : 1) : 2) : 3));
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment