summaryrefslogtreecommitdiff
path: root/gcc/c-semantics.c
diff options
context:
space:
mode:
authordrow <drow@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-22 20:23:27 +0000
committerdrow <drow@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-22 20:23:27 +0000
commit27649ee424f656c1eb2fcc58b40e29143a301fb5 (patch)
tree0a57ad723ba368bdbe6baf8f58eb428c59c306db /gcc/c-semantics.c
parent752df75d28a1141379adf553ea5b1832a24dcace (diff)
downloadgcc-27649ee424f656c1eb2fcc58b40e29143a301fb5.tar.gz
* c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)
(genrtl_for_stmt): Remove emit_nop calls. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76368 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r--gcc/c-semantics.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c
index f3c61b42c35..9f791db602b 100644
--- a/gcc/c-semantics.c
+++ b/gcc/c-semantics.c
@@ -430,7 +430,6 @@ genrtl_while_stmt (tree t)
{
tree cond = WHILE_COND (t);
- emit_nop ();
emit_line_note (input_location);
expand_start_loop (1);
genrtl_do_pushlevel ();
@@ -467,7 +466,6 @@ genrtl_do_stmt_1 (tree cond, tree body)
}
else if (integer_nonzerop (cond))
{
- emit_nop ();
emit_line_note (input_location);
expand_start_loop (1);
@@ -478,7 +476,6 @@ genrtl_do_stmt_1 (tree cond, tree body)
}
else
{
- emit_nop ();
emit_line_note (input_location);
expand_start_loop_continue_elsewhere (1);
@@ -542,7 +539,6 @@ genrtl_for_stmt (tree t)
expand_stmt (FOR_INIT_STMT (t));
/* Expand the initialization. */
- emit_nop ();
emit_line_note (input_location);
if (FOR_EXPR (t))
expand_start_loop_continue_elsewhere (1);