diff options
author | Richard Henderson <rth@cygnus.com> | 1999-03-09 03:36:25 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-03-09 03:36:25 -0800 |
commit | 91e1a7f5aaa8b2172c09642ed7944024c86c69c8 (patch) | |
tree | 894005380072132a0f269b6cff95bf6489975fdf /gcc/reg-stack.c | |
parent | b1eeb2434822b8e90a65c4c883038e556b23a70e (diff) | |
download | gcc-91e1a7f5aaa8b2172c09642ed7944024c86c69c8.zip gcc-91e1a7f5aaa8b2172c09642ed7944024c86c69c8.tar.gz gcc-91e1a7f5aaa8b2172c09642ed7944024c86c69c8.tar.bz2 |
reg-stack.c (stack_reg_life_analysis): Use returnjump_p instead of an explicit test for RETURN.
* reg-stack.c (stack_reg_life_analysis): Use returnjump_p
instead of an explicit test for RETURN.
From-SVN: r25652
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 203e1af..014f952 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -1199,7 +1199,7 @@ stack_reg_life_analysis (first, stackentry) for (block = blocks - 1; --block >= 0;) if (GET_CODE (block_end[block]) == JUMP_INSN - && GET_CODE (PATTERN (block_end[block])) == RETURN) + && returnjump_p (block_end[block])) mark_regs_pat (retvalue, block_out_reg_set+block); /* Mark off the end of last block if we "fall off" the end of the |