diff options
author | Richard Henderson <rth@redhat.com> | 2002-03-11 17:08:11 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-03-11 17:08:11 -0800 |
commit | bc204393c834739e398207f5e5c2e671ef56210f (patch) | |
tree | c8335b3369540a14b42975cea7b005816c103e24 /gcc/rtlanal.c | |
parent | 63adb4ff83bda8651bd73bab046d653c9e178e44 (diff) | |
download | gcc-bc204393c834739e398207f5e5c2e671ef56210f.tar.gz |
rtlanal.c: Include recog.h.
* rtlanal.c: Include recog.h.
(keep_with_call_p): Fix thinko.
* Makefile.in (rtlanal.o): Update dependencies.
From-SVN: r50623
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 997bb525a2b..70cbbf8e21d 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -25,6 +25,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "toplev.h" #include "rtl.h" #include "hard-reg-set.h" +#include "insn-config.h" +#include "recog.h" #include "tm_p.h" /* Forward declarations */ @@ -3140,17 +3142,15 @@ keep_with_call_p (insn) && GET_CODE (SET_DEST (set)) == REG && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER) return true; - /* There may be stack pop just after the call and - before actual store of return register. Search - for the actual store when deciding if we can break - or not. */ + /* There may be a stack pop just after the call and before the store + of the return register. Search for the actual store when deciding + if we can break or not. */ if (SET_DEST (set) == stack_pointer_rtx) { rtx i2 = next_nonnote_insn (insn); - if (i2 && keep_with_call_p (insn)) + if (i2 && keep_with_call_p (i2)) return true; } } return false; } - |