aboutsummaryrefslogtreecommitdiff
path: root/gcc/recog.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@redhat.com>2002-05-05 14:51:04 -0700
committerDavid S. Miller <davem@gcc.gnu.org>2002-05-05 14:51:04 -0700
commit309527ce46ad5d14b51c14742dd68825ee609430 (patch)
tree003ea2972bab24c617c9ebed836ae28ee04ae65d /gcc/recog.c
parente8400f618886dcb842926f01b0c7578241e345b7 (diff)
downloadgcc-309527ce46ad5d14b51c14742dd68825ee609430.zip
gcc-309527ce46ad5d14b51c14742dd68825ee609430.tar.gz
gcc-309527ce46ad5d14b51c14742dd68825ee609430.tar.bz2
recog.c (store_data_bypass_p): Handle CLOBBER inside PARALLEL.
2002-05-05 David S. Miller <davem@redhat.com> * recog.c (store_data_bypass_p): Handle CLOBBER inside PARALLEL. From-SVN: r53195
Diffstat (limited to 'gcc/recog.c')
-rw-r--r--gcc/recog.c3
1 files changed, 3 insertions, 0 deletions
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 ();