diff options
author | Bernd Schmidt <bernd.schmidt@analog.com> | 2006-12-06 00:25:29 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2006-12-06 00:25:29 +0000 |
commit | 2372a0625790417f2ca021d3e5016554930900a4 (patch) | |
tree | 8f23a2d5a22c2df0faa8b10efd1d8f88584bf73b /gcc/reload1.c | |
parent | e80dc930bed449d1e2dcb0873013fb402c96da6b (diff) | |
download | gcc-2372a0625790417f2ca021d3e5016554930900a4.zip gcc-2372a0625790417f2ca021d3e5016554930900a4.tar.gz gcc-2372a0625790417f2ca021d3e5016554930900a4.tar.bz2 |
reload1.c (delete_output_reload): Count occurrences in CALL_INSN_FUNCTION_USAGE.
* reload1.c (delete_output_reload): Count occurrences in
CALL_INSN_FUNCTION_USAGE.
* rtlanal.c (count_occurrences): Handle EXPR_LIST nodes without
crashing at the end of the list.
From-SVN: r119571
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 88b89fe..fdab86c 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -7972,6 +7972,9 @@ delete_output_reload (rtx insn, int j, int last_reload_reg) } } n_occurrences = count_occurrences (PATTERN (insn), reg, 0); + if (CALL_P (insn) && CALL_INSN_FUNCTION_USAGE (insn)) + n_occurrences += count_occurrences (CALL_INSN_FUNCTION_USAGE (insn), + reg, 0); if (substed) n_occurrences += count_occurrences (PATTERN (insn), eliminate_regs (substed, 0, |