diff options
author | David S. Miller <davem@redhat.com> | 2002-05-05 14:51:04 -0700 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 2002-05-05 14:51:04 -0700 |
commit | 309527ce46ad5d14b51c14742dd68825ee609430 (patch) | |
tree | 003ea2972bab24c617c9ebed836ae28ee04ae65d /gcc | |
parent | e8400f618886dcb842926f01b0c7578241e345b7 (diff) | |
download | gcc-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')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/recog.c | 3 |
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 (); |