gensupport.c (identify_predicable_attribute): Don't free p_false when it is still in use.

* gensupport.c (identify_predicable_attribute): Don't free p_false
	when it is still in use.

From-SVN: r112081
This commit is contained in:
Andreas Schwab 2006-03-15 10:14:51 +00:00 committed by Andreas Schwab
parent cc0f88952b
commit c0fa472198
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-03-15 Andreas Schwab <schwab@suse.de>
* gensupport.c (identify_predicable_attribute): Don't free p_false
when it is still in use.
2006-03-15 Eric Botcazou <ebotcazou@libertysurf.fr>
* config.gcc (default with_cpu setting) <sparc*-*-*>: Do not modify

View File

@ -510,10 +510,9 @@ identify_predicable_attribute (void)
"unknown value `%s' for `predicable' attribute",
value);
errors = 1;
if (p_false)
free (p_false);
}
if (p_false)
free (p_false);
}
/* Return the number of alternatives in constraint S. */