rs6000.c (validate_condition_mode): Test flag_finite_math_only for CCFPmode.
* rs6000.c (validate_condition_mode): Test flag_finite_math_only for CCFPmode. From-SVN: r55904
This commit is contained in:
parent
302359da86
commit
ad72b5331e
@ -1,3 +1,8 @@
|
|||||||
|
2002-07-31 David Edelsohn <edelsohn@gnu.org>
|
||||||
|
|
||||||
|
* rs6000.c (validate_condition_mode): Test flag_finite_math_only
|
||||||
|
for CCFPmode.
|
||||||
|
|
||||||
2002-07-31 Richard Sandiford <rsandifo@redhat.com>
|
2002-07-31 Richard Sandiford <rsandifo@redhat.com>
|
||||||
|
|
||||||
* config/mips/crtn.asm: Don't use __mips16 to determine the
|
* config/mips/crtn.asm: Don't use __mips16 to determine the
|
||||||
|
@ -6674,9 +6674,10 @@ validate_condition_mode (code, mode)
|
|||||||
abort ();
|
abort ();
|
||||||
|
|
||||||
/* These should never be generated except for
|
/* These should never be generated except for
|
||||||
flag_unsafe_math_optimizations. */
|
flag_unsafe_math_optimizations and flag_finite_math_only. */
|
||||||
if (mode == CCFPmode
|
if (mode == CCFPmode
|
||||||
&& ! flag_unsafe_math_optimizations
|
&& ! flag_unsafe_math_optimizations
|
||||||
|
&& ! flag_finite_math_only
|
||||||
&& (code == LE || code == GE
|
&& (code == LE || code == GE
|
||||||
|| code == UNEQ || code == LTGT
|
|| code == UNEQ || code == LTGT
|
||||||
|| code == UNGT || code == UNLT))
|
|| code == UNGT || code == UNLT))
|
||||||
|
Loading…
Reference in New Issue
Block a user