diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-17 08:46:19 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-17 08:46:19 +0000 |
commit | 283a0d5c3379fefc019ffb20747ff41b032c806d (patch) | |
tree | 2c6472f8ec139069ce40dade8e67840b5c726ed7 /gcc/loop.c | |
parent | 6176aa17581651cebe8f8cb2024f5edca69bf776 (diff) | |
download | ppe42-gcc-283a0d5c3379fefc019ffb20747ff41b032c806d.tar.gz ppe42-gcc-283a0d5c3379fefc019ffb20747ff41b032c806d.zip |
2005-01-15 Paolo Bonzini <bonzini@gnu.org>
* bb-reorder.c (fix_edges_for_rarely_executed_code): Remove
last parameter to reg_scan.
* loop.c (loop_optimize): Likewise.
* passes.c (rest_of_handle_tracer, rest_of_handle_if_conversion,
rest_of_handle_web, rest_of_handle_cfg, rest_of_handle_jump_bypass,
rest_of_handle_life, rest_of_handle_cse, rest_of_handle_cse2,
rest_of_handle_gcse, rest_of_handle_loop_optimize,
rest_of_handle_loop2, rest_of_handle_jump2): Likewise.
* regclass.c (reg_scan): Likewise, for the declaration.
* rtl.h (reg_scan): Likewise, for the prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93758 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index 77aec293a37..2b765c821d8 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -858,7 +858,7 @@ loop_optimize (rtx f, FILE *dumpfile, int flags) /* Now find all register lifetimes. This must be done after find_and_verify_loops, because it might reorder the insns in the function. */ - reg_scan (f, max_reg_before_loop, 1); + reg_scan (f, max_reg_before_loop); /* This must occur after reg_scan so that registers created by gcse will have entries in the register tables. |