diff options
author | Richard Stallman <rms@gnu.org> | 1992-12-30 21:14:30 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-12-30 21:14:30 +0000 |
commit | 2fb95912f67dafba6a865e1e8cd228c1413083fd (patch) | |
tree | bf8a21c64ea7f39e640e99e63e1b03e1a3b47ffa | |
parent | b5c2c9bc2fdb585b6ff5ea61597e1f57888f1b6c (diff) | |
download | gcc-2fb95912f67dafba6a865e1e8cd228c1413083fd.zip gcc-2fb95912f67dafba6a865e1e8cd228c1413083fd.tar.gz gcc-2fb95912f67dafba6a865e1e8cd228c1413083fd.tar.bz2 |
(delete_computation): reg_referenced_p wants body, not insn.
From-SVN: r3001
-rw-r--r-- | gcc/jump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3067,7 +3067,7 @@ delete_computation (insn) rtx note, next; #ifdef HAVE_cc0 - if (reg_referenced_p (cc0_rtx, insn)) + if (reg_referenced_p (cc0_rtx, PATTERN (insn))) { rtx prev = prev_nonnote_insn (insn); /* We assume that at this stage |