From 8b2b54f9d6dc34cafebf59ecb154ac52a354ecc1 Mon Sep 17 00:00:00 2001 From: Uros Bizjak Date: Sat, 4 Sep 2010 13:02:44 +0200 Subject: [PATCH] * config/i386/i386.md: Add missing part from my previous commit. From-SVN: r163859 --- gcc/config/i386/i386.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index c2fd671d78b..726301cf0de 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -2868,12 +2868,12 @@ (match_operand:XF 1 "general_operand" ""))] "reload_completed && !(MEM_P (operands[0]) && MEM_P (operands[1])) - && ! (ANY_FP_REG_P (operands[0]) || + && ! (FP_REG_P (operands[0]) || (GET_CODE (operands[0]) == SUBREG - && ANY_FP_REG_P (SUBREG_REG (operands[0])))) - && ! (ANY_FP_REG_P (operands[1]) || + && FP_REG_P (SUBREG_REG (operands[0])))) + && ! (FP_REG_P (operands[1]) || (GET_CODE (operands[1]) == SUBREG - && ANY_FP_REG_P (SUBREG_REG (operands[1]))))" + && FP_REG_P (SUBREG_REG (operands[1]))))" [(const_int 0)] "ix86_split_long_move (operands); DONE;") -- 2.30.2