* ifcvt.c (if_convert): Do not free NULL.

From-SVN: r33888
This commit is contained in:
Philippe De Muyter 2000-05-13 19:08:28 +02:00 committed by Jeff Law
parent e09aafa0d4
commit 8701a6a4ba
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sat May 13 11:05:47 2000 Philippe De Muyter <phdm@macqel.be>
* ifcvt.c (if_convert): Do not free NULL.
2000-05-12 Nick Clifton <nickc@cygnus.com>
* config/fr30/fr30.c (fr30_move_double): New function: Emit code

View File

@ -1990,7 +1990,8 @@ if_convert (life_data_ok)
block_num++;
}
sbitmap_vector_free (post_dominators);
if (post_dominators)
sbitmap_vector_free (post_dominators);
if (rtl_dump_file)
fflush (rtl_dump_file);