diff options
author | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-01 23:38:46 +0000 |
---|---|---|
committer | janis <janis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-02-01 23:38:46 +0000 |
commit | 6f14033a406f88974e41c9395030afb056dfa2a4 (patch) | |
tree | 99393e22256bb0de9c34957cb75ae46297c67299 /gcc/cfganal.c | |
parent | b193f2d548d17b9c10bceaf51aa14669d8e68f9c (diff) | |
download | gcc-6f14033a406f88974e41c9395030afb056dfa2a4.tar.gz |
* cfganal.c: Include tm_p.h.
(keep_with_call_p): Fix the test that determines if a register holds
the return value of a call.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49415 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfganal.c')
-rw-r--r-- | gcc/cfganal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfganal.c b/gcc/cfganal.c index a57b25a1ffd..6a10236dfc9 100644 --- a/gcc/cfganal.c +++ b/gcc/cfganal.c @@ -26,8 +26,8 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "hard-reg-set.h" #include "basic-block.h" #include "toplev.h" - #include "obstack.h" +#include "tm_p.h" /* Store the data structures necessary for depth-first search. */ struct depth_first_search_dsS { @@ -227,7 +227,7 @@ keep_with_call_p (insn) && fixed_regs[REGNO (SET_DEST (set))]) return true; if (GET_CODE (SET_SRC (set)) == REG - && REG_FUNCTION_VALUE_P (SET_SRC (set))) + && FUNCTION_VALUE_REGNO_P (REGNO (SET_SRC (set)))) return true; } return false; |