Commit e0de76d8 by Steven Bosscher

re PR middle-end/54313 (GCC fails to bootstrap with MALLOC_PERTURB – Segfault in…

re PR middle-end/54313 (GCC fails to bootstrap with MALLOC_PERTURB – Segfault in bitmap_obstack_free)

	PR middle-end/54313
	* dse.c (dse_step7): Don't free kill_on_calls bitmap, it is
	freed when its obstack is release.

From-SVN: r190502
parent 32b2d8f3
2012-08-18 Steven Bosscher <steven@gcc.gnu.org>
PR middle-end/54313
* dse.c (dse_step7): Don't free kill_on_calls bitmap, it is
freed when its obstack is release.
2012-08-18 Andrew Pinski <pinskia@gmail.com> 2012-08-18 Andrew Pinski <pinskia@gmail.com>
* alloc-pool.c (pool_alloc): Add valgrind markers. * alloc-pool.c (pool_alloc): Add valgrind markers.
......
...@@ -3823,7 +3823,6 @@ dse_step7 (void) ...@@ -3823,7 +3823,6 @@ dse_step7 (void)
VEC_free (group_info_t, heap, rtx_group_vec); VEC_free (group_info_t, heap, rtx_group_vec);
BITMAP_FREE (all_blocks); BITMAP_FREE (all_blocks);
BITMAP_FREE (scratch); BITMAP_FREE (scratch);
BITMAP_FREE (kill_on_calls);
free_alloc_pool (rtx_store_info_pool); free_alloc_pool (rtx_store_info_pool);
free_alloc_pool (read_info_pool); free_alloc_pool (read_info_pool);
......
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