diff options
author | Geoff Keating <geoffk@cygnus.com> | 2000-05-05 00:06:34 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2000-05-05 00:06:34 +0000 |
commit | fce918204761d06dac67ff055bc26ca6f3a72fbc (patch) | |
tree | e6e84215986c7349d3745a82e7060d2e62c907db | |
parent | f63c134b33be061bebaa46bcb2019ed747c8bedf (diff) | |
download | gcc-fce918204761d06dac67ff055bc26ca6f3a72fbc.zip gcc-fce918204761d06dac67ff055bc26ca6f3a72fbc.tar.gz gcc-fce918204761d06dac67ff055bc26ca6f3a72fbc.tar.bz2 |
rs6000.h (PREDICATE_CODES): Add floating-point comparison codes to branch_comparison_operator.
* config/rs6000/rs6000.h (PREDICATE_CODES): Add floating-point
comparison codes to branch_comparison_operator.
From-SVN: r33692
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2778562..c0ee141 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-05-04 Geoff Keating <geoffk@cygnus.com> + + * config/rs6000/rs6000.h (PREDICATE_CODES): Add floating-point + comparison codes to branch_comparison_operator. + 2000-05-04 Richard Henderson <rth@cygnus.com> * ifcvt.c (noce_process_if_block): Always reset X in the A == B case. diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 11f96a3..890c415 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -2741,7 +2741,10 @@ do { \ {"load_multiple_operation", {PARALLEL}}, \ {"store_multiple_operation", {PARALLEL}}, \ {"branch_comparison_operator", {EQ, NE, LE, LT, GE, \ - GT, LEU, LTU, GEU, GTU}}, \ + GT, LEU, LTU, GEU, GTU, \ + UNORDERED, ORDERED, \ + UNEQ, LTGT, \ + UNGE, UNGT, UNLE, UNLT}}, \ {"scc_comparison_operator", {EQ, NE, LE, LT, GE, \ GT, LEU, LTU, GEU, GTU}}, \ {"trap_comparison_operator", {EQ, NE, LE, LT, GE, \ |