Commit be2c39f8 by Kazu Hirata Committed by Kazu Hirata

* genrecog.c (write_node): Remove a useless local variable.

From-SVN: r76807
parent de81ffd4
2004-01-28 Kazu Hirata <kazu@cs.umass.edu>
* genrecog.c (write_node): Remove a useless local variable.
2004-01-28 Ian Lance Taylor <ian@wasabisystems.com> 2004-01-28 Ian Lance Taylor <ian@wasabisystems.com>
* Makefile.in (options.c options.h): Use stamp file s-options to * Makefile.in (options.c options.h): Use stamp file s-options to
......
...@@ -2152,11 +2152,8 @@ write_node (struct decision *p, int depth, ...@@ -2152,11 +2152,8 @@ write_node (struct decision *p, int depth,
while ((test = test->next) != NULL) while ((test = test->next) != NULL)
{ {
int uncond2;
last_test = test; last_test = test;
uncond2 = is_unconditional (test, subroutine_type); if (is_unconditional (test, subroutine_type))
if (uncond2 != 0)
break; break;
printf ("\n && "); printf ("\n && ");
......
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