------- Comment #4 from hjl dot tools at gmail dot com 2010-06-10 23:20 ------- From:
http://gcc.gnu.org/ml/gcc-patches/2010-06/msg01081.html if (!df_live_scratch) - df_live_scratch = BITMAP_ALLOC (NULL); + df_live_scratch = BITMAP_ALLOC (&problem_data->live_bitmaps); ... + bitmap_obstack_release (&problem_data->live_bitmaps); if (df_live_scratch) BITMAP_FREE (df_live_scratch); We are calling bitmap_obstack_free after bitmap_obstack_release is called. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44498