aboutsummaryrefslogtreecommitdiff
path: root/gcc/cse.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2001-11-28 10:47:25 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2001-11-28 09:47:25 +0000
commitdb4a825457efe5f2b71281fa17f59ce2d7c65a6d (patch)
tree97187b5417e7845f32035f0c7bc2cd22abcfb809 /gcc/cse.c
parent562d21e913afeb56dced1b60fdfe6ff09a2fbf23 (diff)
downloadgcc-db4a825457efe5f2b71281fa17f59ce2d7c65a6d.zip
gcc-db4a825457efe5f2b71281fa17f59ce2d7c65a6d.tar.gz
gcc-db4a825457efe5f2b71281fa17f59ce2d7c65a6d.tar.bz2
cse.c (true_dependence_in_rtx): New function.
* cse.c (true_dependence_in_rtx): New function. (invalidate): Use it. * c-common.h (GOTO_FAKE_P): New macro. * tree-inline.c (GOTO_FAKE_P): Set. * c-tree.texi (GOTO_FAKE_P): Document. * varasm.c (assemble_variable): Set reloc to 3 for error_mark containing pointers. (output_addressed_constants): Check for local/external relocations. * elfos.h (SELECT_SECTION): Classify data section. * tm.texi (SELECT_SECTION): Update documentation. * cfganal.c (flow_dfs_compute_reverse_add_bb): set visited bit. (flow_dfs_compute_reverse_execute): Add only unvisited blocks. From-SVN: r47405
Diffstat (limited to 'gcc/cse.c')
-rw-r--r--gcc/cse.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/cse.c b/gcc/cse.c
index 54afcdd..fba491a 100644
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -5912,9 +5912,7 @@ cse_insn (insn, libcall_insn)
/* Don't put a hard register source into the table if this is
the last insn of a libcall. In this case, we only need
to put src_eqv_elt in src_elt. */
- if (GET_CODE (src) != REG
- || REGNO (src) >= FIRST_PSEUDO_REGISTER
- || ! find_reg_note (insn, REG_RETVAL, NULL_RTX))
+ if (! find_reg_note (insn, REG_RETVAL, NULL_RTX))
{
struct table_elt *elt;