diff options
Diffstat (limited to 'gcc/genrecog.c')
-rw-r--r-- | gcc/genrecog.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/genrecog.c b/gcc/genrecog.c index e0a225a..dc756fe 100644 --- a/gcc/genrecog.c +++ b/gcc/genrecog.c @@ -2152,11 +2152,8 @@ write_node (struct decision *p, int depth, while ((test = test->next) != NULL) { - int uncond2; - last_test = test; - uncond2 = is_unconditional (test, subroutine_type); - if (uncond2 != 0) + if (is_unconditional (test, subroutine_type)) break; printf ("\n && "); |