From: Uros Bizjak Date: Tue, 15 Sep 2009 06:32:27 +0000 (+0200) Subject: alpha.md (smaxsf3): Disable for IEEE mode. X-Git-Tag: releases/gcc-4.3.5~385 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8894ba75dbb47066ea70e636f1b02acf07419266;p=thirdparty%2Fgcc.git alpha.md (smaxsf3): Disable for IEEE mode. * config/alpha/alpha.md (smaxsf3): Disable for IEEE mode. (sminsf3): Ditto. From-SVN: r151710 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 934e0fc2ec2c..1be383b9f98e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ +2009-09-15 Uros Bizjak + + * config/alpha/alpha.md (smaxsf3): Disable for IEEE mode. + (sminsf3): Ditto. + 2009-09-12 Gerald Pfeifer - + * doc/install.texi (avr): Remove obsolete reference site. 2009-09-10 Peter Bergner diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 897ecc477f21..15e6564bac10 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -3862,7 +3862,7 @@ (set (match_operand:SF 0 "register_operand" "") (if_then_else:SF (eq (match_dup 3) (match_dup 4)) (match_dup 1) (match_dup 2)))] - "TARGET_FP" + "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU" { operands[3] = gen_reg_rtx (DFmode); operands[4] = CONST0_RTX (DFmode); @@ -3875,7 +3875,7 @@ (set (match_operand:SF 0 "register_operand" "") (if_then_else:SF (ne (match_dup 3) (match_dup 4)) (match_dup 1) (match_dup 2)))] - "TARGET_FP" + "TARGET_FP && alpha_fptm < ALPHA_FPTM_SU" { operands[3] = gen_reg_rtx (DFmode); operands[4] = CONST0_RTX (DFmode);