aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2004-03-03 11:41:47 +0000
committerPaul Brook <pbrook@gcc.gnu.org>2004-03-03 11:41:47 +0000
commit33e6a97ae7a689cf044d2c26370ae305f178d05b (patch)
tree74db66e5821767dfda5ba4ee23cdcc2913ae9f32 /gcc/flow.c
parentb9dcdee46edefdb67cbbb5aa0829fba999c2a1f0 (diff)
downloadgcc-33e6a97ae7a689cf044d2c26370ae305f178d05b.zip
gcc-33e6a97ae7a689cf044d2c26370ae305f178d05b.tar.gz
gcc-33e6a97ae7a689cf044d2c26370ae305f178d05b.tar.bz2
* flow.c (ior_reg_cond, and_reg_cond): Remove stray ")".
From-SVN: r78827
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 99c943a..686292c 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -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;