From 2f9fb4c226e96e73d87ebeab0dc43fa2711296db Mon Sep 17 00:00:00 2001 From: "J\"orn Rennecke" Date: Wed, 23 Jun 1999 15:05:18 +0000 Subject: rtlanal.c (reg_referenced_p): Use reg_overlap_mentioned_p for the parts of an UNSPEC / UNSPEC_VOLATILE. * rtlanal.c (reg_referenced_p): Use reg_overlap_mentioned_p for the parts of an UNSPEC / UNSPEC_VOLATILE. From-SVN: r27720 --- gcc/rtlanal.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/rtlanal.c') diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index fb4f87c..52ff6a9 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -410,6 +410,11 @@ reg_referenced_p (x, body) case UNSPEC: case UNSPEC_VOLATILE: + for (i = XVECLEN (body, 0) - 1; i >= 0; i--) + if (reg_overlap_mentioned_p (x, XVECEXP (body, 0, i))) + return 1; + return 0; + case PARALLEL: for (i = XVECLEN (body, 0) - 1; i >= 0; i--) if (reg_referenced_p (x, XVECEXP (body, 0, i))) -- cgit v1.1