]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* flow.c (ior_reg_cond, and_reg_cond): Remove stray ")".
authorPaul Brook <paul@codesourcery.com>
Wed, 3 Mar 2004 11:41:47 +0000 (11:41 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Wed, 3 Mar 2004 11:41:47 +0000 (11:41 +0000)
From-SVN: r78827

gcc/ChangeLog
gcc/flow.c

index 7ed079e6db675e0f159923c3474ae7f1feb45f42..baa6a903ee033667590481faf5479a8d547063dc 100644 (file)
@@ -1,3 +1,7 @@
+2004-03-03  Paul Brook  <paul@codesourcery.com>
+
+       * flow.c (ior_reg_cond, and_reg_cond): Remove stray ")".
+
 2004-03-03  Jan Hubicka  <jh@suse.cz>
 
        * ggc-common.c (ggc_alloc_cleared_stat, ggc_realloc_stat):
index 99c943ae797929fa857c96aa3a0108b8e7955fab..686292cf9ab0fef832f2ece3b0983660bfe0da38 100644 (file)
@@ -3056,7 +3056,7 @@ ior_reg_cond (rtx old, rtx x, int add)
 
   if (COMPARISON_P (old))
     {
-      if (COMPARISON_P (x))
+      if (COMPARISON_P (x)
          && REVERSE_CONDEXEC_PREDICATES_P (GET_CODE (x), GET_CODE (old))
          && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
        return const1_rtx;
@@ -3168,7 +3168,7 @@ and_reg_cond (rtx old, rtx x, int add)
 
   if (COMPARISON_P (old))
     {
-      if (COMPARISON_P (x))
+      if (COMPARISON_P (x)
          && GET_CODE (x) == reverse_condition (GET_CODE (old))
          && REGNO (XEXP (x, 0)) == REGNO (XEXP (old, 0)))
        return const0_rtx;