From: Andreas Schwab Date: Wed, 15 Mar 2006 10:14:51 +0000 (+0000) Subject: gensupport.c (identify_predicable_attribute): Don't free p_false when it is still... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0fa4721981cd9c1675141bde3741e6151221dec;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 419c5db7db9..8a51c0d470a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-03-15 Andreas Schwab + + * gensupport.c (identify_predicable_attribute): Don't free p_false + when it is still in use. + 2006-03-15 Eric Botcazou * config.gcc (default with_cpu setting) : Do not modify diff --git a/gcc/gensupport.c b/gcc/gensupport.c index 16878b8cf09..c15540b9006 100644 --- a/gcc/gensupport.c +++ b/gcc/gensupport.c @@ -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. */