Commit 4e6a492c by Bob Wilson Committed by Bob Wilson

target-supports.exp (check_effective_target_hard_float): Remove special case for xtensa-*-*.

	* lib/target-supports.exp (check_effective_target_hard_float): Remove
	special case for xtensa-*-*.

From-SVN: r132130
parent e3ac9b24
2008-02-05 Bob Wilson <bob.wilson@acm.org>
* lib/target-supports.exp (check_effective_target_hard_float): Remove
special case for xtensa-*-*.
2008-02-05 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR fortran/35037
......@@ -579,11 +579,9 @@ proc check_effective_target_mpaired_single { } {
# Return true if the target has access to FPU instructions.
proc check_effective_target_hard_float { } {
if { [istarget mips*-*-*] || [istarget xtensa-*-*] } {
if { [istarget mips*-*-*] } {
return [check_no_compiler_messages hard_float assembly {
#if ((defined __mips \
&& (defined __mips_soft_float || defined __mips16)) \
|| (defined __xtensa__ && defined __XTENSA_SOFT_FLOAT__))
#if (defined __mips_soft_float || defined __mips16)
#error FOO
#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