diff options
author | Graham Stott <graham.stott@btinternet.com> | 2002-09-07 09:59:16 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2002-09-07 09:59:16 +0000 |
commit | 92d9256d257aab3b1d05cb1a89d13f7b9d129a62 (patch) | |
tree | 6ad8bbd2bb9c538e6441a3deea27810e4af85d0e /gcc/rtlanal.c | |
parent | 62d8c4f11ca9374e10db6258ef7a1e3e23556ee3 (diff) | |
download | gcc-92d9256d257aab3b1d05cb1a89d13f7b9d129a62.zip gcc-92d9256d257aab3b1d05cb1a89d13f7b9d129a62.tar.gz gcc-92d9256d257aab3b1d05cb1a89d13f7b9d129a62.tar.bz2 |
* rtlanal.c (dead_or_set_regno_p): Fix typo.
From-SVN: r56915
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 6d391ea..82a5987 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -1798,7 +1798,7 @@ dead_or_set_regno_p (insn, test_regno) if (GET_CODE (pattern) == SET) { - rtx dest = SET_DEST (PATTERN (insn)); + rtx dest = SET_DEST (pattern); /* A value is totally replaced if it is the destination or the destination is a SUBREG of REGNO that does not change the number of |