aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@redhat.com>2001-08-29 21:43:41 +0000
committerAndrew Macleod <amacleod@gcc.gnu.org>2001-08-29 21:43:41 +0000
commitc63b1ae8a150c05ecee144cfb63b004af487df55 (patch)
tree865976ad0565108e4b7044a2fbec43d1778de04e /gcc/gcse.c
parentc864312278d46ec2a65bec64f6eef53be1b5a0e9 (diff)
downloadgcc-c63b1ae8a150c05ecee144cfb63b004af487df55.zip
gcc-c63b1ae8a150c05ecee144cfb63b004af487df55.tar.gz
gcc-c63b1ae8a150c05ecee144cfb63b004af487df55.tar.bz2
gcse.c (compute_hash_table): The SRC part of an insn with a RETVAL note should not be considered outside the...
2001-08-29 Andrew MacLeod <amacleod@redhat.com> * gcse.c (compute_hash_table): The SRC part of an insn with a RETVAL note should not be considered outside the libcall block. From-SVN: r45276
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index 2a33a15..029c5b6 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -2545,10 +2545,12 @@ compute_hash_table (set_p)
if (INSN_P (insn))
{
if (find_reg_note (insn, REG_LIBCALL, NULL_RTX))
- in_libcall_block = 1;
- else if (find_reg_note (insn, REG_RETVAL, NULL_RTX))
- in_libcall_block = 0;
- hash_scan_insn (insn, set_p, in_libcall_block);
+ in_libcall_block = 1;
+ else if (set_p && find_reg_note (insn, REG_RETVAL, NULL_RTX))
+ in_libcall_block = 0;
+ hash_scan_insn (insn, set_p, in_libcall_block);
+ if (!set_p && find_reg_note (insn, REG_RETVAL, NULL_RTX))
+ in_libcall_block = 0;
}
}