8202722: Move marksweep_init into GC code

Reviewed-by: ehelin, kbarrett
This commit is contained in:
Stefan Karlsson 2018-05-07 16:16:17 +02:00
parent c590979683
commit fc99089e00
5 changed files with 6 additions and 6 deletions

View file

@ -62,9 +62,6 @@ jint universe_init(); // depends on codeCache_init and stubRoutines_ini
void gc_barrier_stubs_init();
void interpreter_init(); // before any methods loaded
void invocationCounter_init(); // before any methods loaded
#if INCLUDE_SERIALGC
void marksweep_init();
#endif
void accessFlags_init();
void templateTable_init();
void InterfaceSupport_init();
@ -119,7 +116,6 @@ jint init_globals() {
gc_barrier_stubs_init(); // depends on universe_init, must be before interpreter_init
interpreter_init(); // before any methods loaded
invocationCounter_init(); // before any methods loaded
SERIALGC_ONLY(marksweep_init());
accessFlags_init();
templateTable_init();
InterfaceSupport_init();