diff options
author | J"orn Rennecke <amylaar@cygnus.co.uk> | 1999-06-23 15:05:18 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 1999-06-23 16:05:18 +0100 |
commit | 2f9fb4c226e96e73d87ebeab0dc43fa2711296db (patch) | |
tree | 9d6f3e319eb1301c1dc980e11524a67142efd2c8 /gcc/rtlanal.c | |
parent | 34043bd2e9ad8e2c582e5893838d9694e1796998 (diff) | |
download | gcc-2f9fb4c226e96e73d87ebeab0dc43fa2711296db.tar.gz |
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
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index fb4f87c07de..52ff6a90c64 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))) |