]> gcc.gnu.org Git - gcc.git/commitdiff
pa.c (cmpib_comparison_operator): Remove GEU and LTU.
authorJeffrey A Law <law@cygnus.com>
Mon, 11 Dec 2000 21:17:34 +0000 (21:17 +0000)
committerJeff Law <law@gcc.gnu.org>
Mon, 11 Dec 2000 21:17:34 +0000 (14:17 -0700)
        * pa.c (cmpib_comparison_operator): Remove GEU and LTU.
        * pa.h (PREDICATE_CODES, cmpib_comparison_operator): Corresponding
        changes.

From-SVN: r38197

gcc/ChangeLog
gcc/config/pa/pa.c
gcc/config/pa/pa.h

index 4614dc8fb025c74de24b5b466e3bdb20e6b46807..36eac604bcbddb5ae6a89c0fe4482c849d862661 100644 (file)
@@ -1,3 +1,9 @@
+Mon Dec 11 13:51:09 2000  Jeffrey A Law  (law@cygnus.com)
+
+       * pa.c (cmpib_comparison_operator): Remove GEU and LTU.
+       * pa.h (PREDICATE_CODES, cmpib_comparison_operator): Corresponding
+       changes.
+
 2000-12-11  Bruce Korb  <bkorb@gnu.org>
 
        * fixinc/fixincl.tpl: initialize all fields for warnings
index e9211eee8787c7d9a0c5d0dcb5d882c2ee006452..dc1af39d4ce03e626e3ee23cb50f80f279229d23 100644 (file)
@@ -7065,9 +7065,7 @@ cmpib_comparison_operator (op, mode)
              || GET_CODE (op) == GT
              || GET_CODE (op) == GTU
              || GET_CODE (op) == GE
-             || GET_CODE (op) == GEU
              || GET_CODE (op) == LT
-             || GET_CODE (op) == LTU
              || GET_CODE (op) == LE
              || GET_CODE (op) == LEU));
 }
index f920c0fb46581cf66b69f0734d98123f3fa1d20e..027e2dfcc262e480c711f0698047f4aaa33cf168 100644 (file)
@@ -2052,6 +2052,6 @@ while (0)
   {"basereg_operand", {REG}},                                          \
   {"div_operand", {REG, CONST_INT}},                                   \
   {"ireg_operand", {REG}},                                             \
-  {"cmpib_comparison_operator", {EQ, NE, LT, LTU, LE, LEU,             \
-   GT, GTU, GE, GEU}},                                                 \
+  {"cmpib_comparison_operator", {EQ, NE, LT, LE, LEU,                  \
+   GT, GTU, GE}},                                                      \
   {"movb_comparison_operator", {EQ, NE, LT, GE}},
This page took 0.073522 seconds and 5 git commands to generate.