diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b0c8ad37079c844f0c163f8b137c359be8271277..ff0ebecd9086fd7ee6fdd9db503f1cc287da373d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2012-11-16 Jakub Jelinek <jakub@redhat.com> + + PR target/54073 + * config/i386/i386.md (mov<mode>cc): Use comparison_operator + instead of ordered_comparison_operator resp. + ix86_fp_comparison_operator predicates. + * config/i386/i386.c (ix86_expand_fp_movcc): Reject TImode + or for -m32 DImode comparisons. + 2012-11-16 Jan Hubicka <jh@suse.cz> PR tree-optimization/54717 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index b4e4e72f8fcab7cc12c5bbf5a5325438139a2306..03c6675ba14321af41fe32fb1275c587a7d2f0e9 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -19957,6 +19957,11 @@ ix86_expand_fp_movcc (rtx operands[]) return true; } + if (GET_MODE (op0) == TImode + || (GET_MODE (op0) == DImode + && !TARGET_64BIT)) + return false; + /* The floating point conditional move instructions don't directly support conditions resulting from a signed integer comparison. */ diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index f21e5cc47b0aca805a02461de2577c586a0d2fe0..aa75d6b125ebdbf2d30b39330b25bddcb4821202 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -16121,7 +16121,7 @@ (define_expand "mov<mode>cc" [(set (match_operand:SWIM 0 "register_operand") - (if_then_else:SWIM (match_operand 1 "ordered_comparison_operator") + (if_then_else:SWIM (match_operand 1 "comparison_operator") (match_operand:SWIM 2 "<general_operand>") (match_operand:SWIM 3 "<general_operand>")))] "" @@ -16238,7 +16238,7 @@ (define_expand "mov<mode>cc" [(set (match_operand:X87MODEF 0 "register_operand") (if_then_else:X87MODEF - (match_operand 1 "ix86_fp_comparison_operator") + (match_operand 1 "comparison_operator") (match_operand:X87MODEF 2 "register_operand") (match_operand:X87MODEF 3 "register_operand")))] "(TARGET_80387 && TARGET_CMOVE)