PR jit/63854: Fix leaks in test-fuzzer.c

gcc/testsuite/ChangeLog:
	PR jit/63854
	* jit.dg/test-fuzzer.c (fuzzer_init): Free malloced buffers.
	(make_random_function): Free ff->locals.

From-SVN: r217812
This commit is contained in:
David Malcolm 2014-11-19 20:45:03 +00:00 committed by David Malcolm
parent ba2dbfce55
commit 3d1f12d56b
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2014-11-19 David Malcolm <dmalcolm@redhat.com>
PR jit/63854
* jit.dg/test-fuzzer.c (fuzzer_init): Free malloced buffers.
(make_random_function): Free ff->locals.
2014-11-19 Uros Bizjak <ubizjak@gmail.com>
PR target/63947

View File

@ -105,6 +105,11 @@ fuzzer_init (fuzzer *f, gcc_jit_context *ctxt, unsigned int seed)
for (i = 0; i < num_funcs; i++)
f->funcs[f->num_funcs++] = make_random_function (f);
/* Now clean out f. */
free (f->types);
free (f->funcs);
free (f->globals);
}
/* Get random int in inclusive range [min, max]. */
@ -309,6 +314,7 @@ make_random_function (fuzzer *f)
gcc_jit_function *result = ff->fn;
free (ff->locals);
free (ff->params);
free (ff);