Commit af711c23 by Prathamesh Kulkarni Committed by Prathamesh Kulkarni

cfg.c (free_original_copy_tables): Replace second assignment of bb_copy = NULL…

cfg.c (free_original_copy_tables): Replace second assignment of bb_copy = NULL by bb_original = NULL.

2016-09-02  Prathamesh Kulkarni  <prathamesh.kulkarni@linaro.org>

	* cfg.c (free_original_copy_tables): Replace second assignment of
	bb_copy = NULL by bb_original = NULL.

From-SVN: r239960
parent afef6647
2016-09-02 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* cfg.c (free_original_copy_tables): Replace second assignment of
bb_copy = NULL by bb_original = NULL.
2016-09-02 Jakub Jelinek <jakub@redhat.com>
PR other/77421
......
......@@ -1075,7 +1075,7 @@ free_original_copy_tables (void)
delete bb_copy;
bb_copy = NULL;
delete bb_original;
bb_copy = NULL;
bb_original = NULL;
delete loop_copy;
loop_copy = NULL;
delete original_copy_bb_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