From 53622482f0ed55e3e41d433c5987524f436223f9 Mon Sep 17 00:00:00 2001 From: hubicka Date: Thu, 4 Mar 2004 16:28:50 +0000 Subject: * cfgcleanup.c (thread_jump): Update call of cselib_init. * cselib.c (cselib_record_memory): New static variable. (cselib_lookup_mem, cselib_record_set, cselib_record_sets): Give up on memories when asked for. (cselib_init): Accept new argument. * cselib.h (cselib_init): Update prototype. * gcse.c (local_cprop_pass): Update call of cselib_init. * loop.c (load_mems): Update call of cselib_init. * postreload.c (reload_cse_regs_1): Update call of cselib_init. * sched-deps.c (sched_analyze): Update call of cselib_init. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78917 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/gcse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gcse.c') diff --git a/gcc/gcse.c b/gcc/gcse.c index 975fb1fbe2f..ce4d201b698 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -4407,7 +4407,7 @@ local_cprop_pass (int alter_jumps) rtx libcall_stack[MAX_NESTED_LIBCALLS + 1], *libcall_sp; bool changed = false; - cselib_init (); + cselib_init (false); libcall_sp = &libcall_stack[MAX_NESTED_LIBCALLS]; *libcall_sp = 0; for (insn = get_insns (); insn; insn = NEXT_INSN (insn)) -- cgit v1.2.1