Add the missing 0 at the end of the .jcr section.

Without this the dynamic library test was failing as it was calling
_Jv_RegisterClasses multiple times.
This commit is contained in:
andrew 2018-11-24 18:23:53 +00:00
parent 4532b7c84a
commit 13b8613686

View File

@ -41,6 +41,9 @@ static crt_func __CTOR_END__[] __section(".ctors") __used = {
static crt_func __DTOR_END__[] __section(".dtors") __used = {
(crt_func)0
};
static crt_func __JCR_LIST__[] __section(".jcr") __used = {
(crt_func)0
};
static void
__do_global_ctors_aux(void)