diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-31 06:21:31 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-31 06:21:31 +0000 |
commit | cab14df7519ca2914741470150133e8ff5a718b3 (patch) | |
tree | 74d7d828de9e380db26da65d9c431dfb739c6948 /gcc/c-semantics.c | |
parent | 9820868d9c3819a17cee188739663394473af4cd (diff) | |
download | gcc-cab14df7519ca2914741470150133e8ff5a718b3.tar.gz |
* rtl.h (NOTE_INSN_LOOP_END_TOP_COND): New.
* rtl.c (note_insn_name): Update.
* emit-rtl.c (remove_unnecessary_notes): Kill it.
* stmt.c (expand_end_loop): Kill jump opt code. Use LOOP_END_TOP_COND
to perform loop rotation.
(expand_exit_loop_top_cond): New.
* tree.h (expand_exit_loop_top_cond): Declare it.
* c-semantics.c (genrtl_while_stmt): Use it.
(genrtl_for_stmt): Likewise.
* ada/trans.c (tree_transform) [N_Loop_Statement]: Use
expand_exit_loop_top_cond.
* f/ste.c (ffeste_begin_iterdo_): Use expand_exit_loop_top_cond.
(ffeste_R819B): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49364 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c index eb5af2a76ae..c0bbc515da8 100644 --- a/gcc/c-semantics.c +++ b/gcc/c-semantics.c @@ -427,7 +427,7 @@ genrtl_while_stmt (t) cond = expand_cond (WHILE_COND (t)); emit_line_note (input_filename, lineno); - expand_exit_loop_if_false (0, cond); + expand_exit_loop_top_cond (0, cond); genrtl_do_pushlevel (); expand_stmt (WHILE_BODY (t)); @@ -529,7 +529,7 @@ genrtl_for_stmt (t) /* Expand the condition. */ emit_line_note (input_filename, lineno); if (cond) - expand_exit_loop_if_false (0, cond); + expand_exit_loop_top_cond (0, cond); /* Expand the body. */ genrtl_do_pushlevel (); |