summaryrefslogtreecommitdiff
path: root/gcc/recog.c
diff options
context:
space:
mode:
authordavem <davem@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-05 21:51:04 +0000
committerdavem <davem@138bc75d-0d04-0410-961f-82ee72b054a4>2002-05-05 21:51:04 +0000
commitbab5a775cb66601947d9f961c01c0e79f8e82904 (patch)
tree003ea2972bab24c617c9ebed836ae28ee04ae65d /gcc/recog.c
parent4d4c393ea5d86f421701197a88e9b66e203b3120 (diff)
downloadgcc-bab5a775cb66601947d9f961c01c0e79f8e82904.tar.gz
2002-05-05 David S. Miller <davem@redhat.com>
* recog.c (store_data_bypass_p): Handle CLOBBER inside PARALLEL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53195 138bc75d-0d04-0410-961f-82ee72b054a4
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 2fd1126044a..3038126226e 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 ();