aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/recog.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6271033..fd87913 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-05-05 David S. Miller <davem@redhat.com>
+
+ * recog.c (store_data_bypass_p): Handle CLOBBER inside PARALLEL.
+
2002-05-05 Kazu Hirata <kazu@cs.umass.edu>
* cse.c: Fix formatting.
diff --git a/gcc/recog.c b/gcc/recog.c
index 2fd1126..3038126 100644
--- a/gcc/recog.c
+++ b/gcc/recog.c
@@ -3315,6 +3315,9 @@ store_data_bypass_p (out_insn, in_insn)
{
rtx exp = XVECEXP (out_pat, 0, i);
+ if (GET_CODE (exp) == CLOBBER)
+ continue;
+
if (GET_CODE (exp) != SET)
abort ();