(mark_loop_jump): Remove bogus assignments to LABEL_ fields in default

case.

From-SVN: r8921
This commit is contained in:
Richard Kenner 1995-02-13 08:13:52 -05:00
parent c694e02fd1
commit f2f4925916
1 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/* Move constant computations out of loops.
Copyright (C) 1987, 88, 89, 91, 92, 93, 1994 Free Software Foundation, Inc.
Copyright (C) 1987, 88, 89, 91-4, 1995 Free Software Foundation, Inc.
This file is part of GNU CC.
@ -2568,11 +2568,7 @@ mark_loop_jump (x, loop_num)
as a branch out of this loop, but not into any loop. */
if (loop_num != -1)
{
LABEL_OUTSIDE_LOOP_P (x) = 1;
LABEL_NEXTREF (x) = loop_number_exit_labels[loop_num];
loop_number_exit_labels[loop_num] = x;
}
loop_number_exit_labels[loop_num] = x;
return;
}