re PR middle-end/66807 (--enable-libmpx failed)

2015-07-09  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/66807
	* tree-chkp-opt.c (chkp_opt_fini): Free post dominator info.

From-SVN: r225600
This commit is contained in:
Richard Biener 2015-07-09 07:47:38 +00:00 committed by Richard Biener
parent ebd765d41a
commit 830ff0020a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2015-07-09 Richard Biener <rguenther@suse.de>
PR tree-optimization/66807
* tree-chkp-opt.c (chkp_opt_fini): Free post dominator info.
2015-07-08 Kito Cheng <kito.cheng@gmail.com> 2015-07-08 Kito Cheng <kito.cheng@gmail.com>
* function.c (stack_protect_epilogue): Use if rather than switch for * function.c (stack_protect_epilogue): Use if rather than switch for

View File

@ -1282,6 +1282,8 @@ static void
chkp_opt_fini (void) chkp_opt_fini (void)
{ {
chkp_fix_cfg (); chkp_fix_cfg ();
free_dominance_info (CDI_POST_DOMINATORS);
} }
/* Checker optimization pass function. */ /* Checker optimization pass function. */