Commit 10176e28 by Daniel Jacobowitz Committed by Daniel Jacobowitz

* c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)

	(genrtl_for_stmt): Remove emit_nop calls.

From-SVN: r76368
parent 9deab0b7
2004-01-22 Daniel Jacobowitz <drow@mvista.com>
* c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)
(genrtl_for_stmt): Remove emit_nop calls.
2004-01-22 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 2004-01-22 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/13713 PR target/13713
......
...@@ -430,7 +430,6 @@ genrtl_while_stmt (tree t) ...@@ -430,7 +430,6 @@ genrtl_while_stmt (tree t)
{ {
tree cond = WHILE_COND (t); tree cond = WHILE_COND (t);
emit_nop ();
emit_line_note (input_location); emit_line_note (input_location);
expand_start_loop (1); expand_start_loop (1);
genrtl_do_pushlevel (); genrtl_do_pushlevel ();
...@@ -467,7 +466,6 @@ genrtl_do_stmt_1 (tree cond, tree body) ...@@ -467,7 +466,6 @@ genrtl_do_stmt_1 (tree cond, tree body)
} }
else if (integer_nonzerop (cond)) else if (integer_nonzerop (cond))
{ {
emit_nop ();
emit_line_note (input_location); emit_line_note (input_location);
expand_start_loop (1); expand_start_loop (1);
...@@ -478,7 +476,6 @@ genrtl_do_stmt_1 (tree cond, tree body) ...@@ -478,7 +476,6 @@ genrtl_do_stmt_1 (tree cond, tree body)
} }
else else
{ {
emit_nop ();
emit_line_note (input_location); emit_line_note (input_location);
expand_start_loop_continue_elsewhere (1); expand_start_loop_continue_elsewhere (1);
...@@ -542,7 +539,6 @@ genrtl_for_stmt (tree t) ...@@ -542,7 +539,6 @@ genrtl_for_stmt (tree t)
expand_stmt (FOR_INIT_STMT (t)); expand_stmt (FOR_INIT_STMT (t));
/* Expand the initialization. */ /* Expand the initialization. */
emit_nop ();
emit_line_note (input_location); emit_line_note (input_location);
if (FOR_EXPR (t)) if (FOR_EXPR (t))
expand_start_loop_continue_elsewhere (1); expand_start_loop_continue_elsewhere (1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment