* c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)
authorDaniel Jacobowitz <drow@mvista.com>
Thu, 22 Jan 2004 20:23:27 +0000 (20:23 +0000)
committerDaniel Jacobowitz <drow@gcc.gnu.org>
Thu, 22 Jan 2004 20:23:27 +0000 (20:23 +0000)
(genrtl_for_stmt): Remove emit_nop calls.

From-SVN: r76368

gcc/ChangeLog
gcc/c-semantics.c

index 69346c60a7ebcd448a18ee81db1a82627d6685b9..6d2d8ba8b5cd6b2c40bf4a28d7bfb72767f911c6 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        PR target/13713
index f3c61b42c355938cac6ec91a43274ac98bc2605e..9f791db602bb1507b69c418cf108dd09fbb80416 100644 (file)
@@ -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);