summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsegher <segher@138bc75d-0d04-0410-961f-82ee72b054a4>2017-11-03 14:07:25 +0000
committersegher <segher@138bc75d-0d04-0410-961f-82ee72b054a4>2017-11-03 14:07:25 +0000
commit9408db99efac60cf3c32254e837a2f08df3c1d58 (patch)
treeb29931426f3ad4a53aef8cb825188b2b4595ef07
parent67e3cdf3ecaecd82d5dff666d84bc162b996bfbd (diff)
downloadgcc-9408db99efac60cf3c32254e837a2f08df3c1d58.tar.gz
rs6000: move_from_CR_ov_bit is TARGET_PAIRED_FLOAT, not TARGET_ISEL
* config/rs6000/rs6000.md (move_from_CR_ov_bit): Change condition to TARGET_PAIRED_FLOAT. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@254373 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/rs6000/rs6000.md2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ced4dd347e7..e8ebe14f133 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2017-11-03 Segher Boessenkool <segher@kernel.crashing.org>
+
+ * config/rs6000/rs6000.md (move_from_CR_ov_bit): Change condition to
+ TARGET_PAIRED_FLOAT.
+
2017-11-03 Siddhesh Poyarekar <siddhesh.poyarekar@linaro.org>
Jim Wilson <jim.wilson@linaro.org>
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md
index 18ebe8f1b28..3ad702daa06 100644
--- a/gcc/config/rs6000/rs6000.md
+++ b/gcc/config/rs6000/rs6000.md
@@ -12134,7 +12134,7 @@
[(set (match_operand:SI 0 "gpc_reg_operand" "=r")
(unspec:SI [(match_operand:CC 1 "cc_reg_operand" "y")]
UNSPEC_MV_CR_OV))]
- "TARGET_ISEL"
+ "TARGET_PAIRED_FLOAT"
"mfcr %0\;rlwinm %0,%0,%t1,1"
[(set_attr "type" "mfcr")
(set_attr "length" "8")])