diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/rtlanal.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 78baa95..798c3ad 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-09-07 Graham Stott <graham.stott@btinternet.con> + + * rtlanal.c (dead_or_set_regno_p): Fix typo. + 2002-09-07 Alan Modra <amodra@bigpond.net.au> * config/rs6000/linux64.h (ASM_PREFERRED_EH_DATA_FORMAT): Define. 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 |