diff options
author | Jan Hubicka <jh@suse.cz> | 2004-03-04 17:28:50 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2004-03-04 16:28:50 +0000 |
commit | 463301c30e2cdf370bac3be5fb1007c3ca94f52f (patch) | |
tree | 807a0763c83b8408e6375a2965d0837b8dbb7208 /gcc/loop.c | |
parent | 3b6ce0af5eb623ca01fe7a34c19594d3cb675a00 (diff) | |
download | gcc-463301c30e2cdf370bac3be5fb1007c3ca94f52f.zip gcc-463301c30e2cdf370bac3be5fb1007c3ca94f52f.tar.gz gcc-463301c30e2cdf370bac3be5fb1007c3ca94f52f.tar.bz2 |
cfgcleanup.c (thread_jump): Update call of cselib_init.
* 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.
From-SVN: r78917
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9797,7 +9797,7 @@ load_mems (const struct loop *loop) ; prev_ebb_head = p; - cselib_init (); + cselib_init (true); /* Build table of mems that get set to constant values before the loop. */ |