PR jit/63854: Fix leak of opts_obstack

gcc/ChangeLog:
	PR jit/63854
	* toplev.c (toplev::finalize): Free opts_obstack.

From-SVN: r217796
This commit is contained in:
David Malcolm 2014-11-19 19:43:20 +00:00 committed by David Malcolm
parent 7dd2b60b2f
commit d5bee0f2af
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2014-11-19 David Malcolm <dmalcolm@redhat.com>
PR jit/63854
* toplev.c (toplev::finalize): Free opts_obstack.
2014-11-19 David Malcolm <dmalcolm@redhat.com>
PR jit/63854

View File

@ -2179,4 +2179,6 @@ toplev::finalize (void)
/* Clean up the context (and pass_manager etc). */
delete g;
g = NULL;
obstack_free (&opts_obstack, NULL);
}