33 lines
985 B
Diff
33 lines
985 B
Diff
From 48687213a92594885837d9b50a22d0776ad744cf Mon Sep 17 00:00:00 2001
|
|
From: Said Musaev <cpu808694@gmail.com>
|
|
Date: Thu, 1 Oct 2020 20:22:40 +0200
|
|
Subject: [PATCH 08/14] m68k-sqrt
|
|
|
|
---
|
|
gcc/config/m68k/m68k.md | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md
|
|
index 8e35357ea23..65c8b10b3eb 100644
|
|
--- a/gcc/config/m68k/m68k.md
|
|
+++ b/gcc/config/m68k/m68k.md
|
|
@@ -4174,13 +4174,13 @@
|
|
(define_expand "sqrt<mode>2"
|
|
[(set (match_operand:FP 0 "nonimmediate_operand" "")
|
|
(sqrt:FP (match_operand:FP 1 "general_operand" "")))]
|
|
- "TARGET_HARD_FLOAT"
|
|
+ "(TARGET_68881 && TARGET_68040) || TARGET_COLDFIRE_FPU"
|
|
"")
|
|
|
|
(define_insn "sqrt<mode>2_68881"
|
|
[(set (match_operand:FP 0 "nonimmediate_operand" "=f")
|
|
(sqrt:FP (match_operand:FP 1 "general_operand" "f<FP:dreg>m")))]
|
|
- "TARGET_68881"
|
|
+ "TARGET_68881 && TARGET_68040"
|
|
{
|
|
if (FP_REG_P (operands[1]))
|
|
return "f<FP:round>sqrt%.x %1,%0";
|
|
--
|
|
2.28.0
|
|
|