mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8190570: Zero fails to build on linux-sparc due undefined reference
Reviewed-by: coleenp
This commit is contained in:
parent
614fca959b
commit
9f9e85e9ad
1 changed files with 4 additions and 0 deletions
|
@ -60,7 +60,11 @@ void stubRoutines_init1();
|
||||||
jint universe_init(); // depends on codeCache_init and stubRoutines_init
|
jint universe_init(); // depends on codeCache_init and stubRoutines_init
|
||||||
#if INCLUDE_ALL_GCS
|
#if INCLUDE_ALL_GCS
|
||||||
// depends on universe_init, must be before interpreter_init (currently only on SPARC)
|
// depends on universe_init, must be before interpreter_init (currently only on SPARC)
|
||||||
|
#ifndef ZERO
|
||||||
void g1_barrier_stubs_init() NOT_SPARC({});
|
void g1_barrier_stubs_init() NOT_SPARC({});
|
||||||
|
#else
|
||||||
|
void g1_barrier_stubs_init() {};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
void interpreter_init(); // before any methods loaded
|
void interpreter_init(); // before any methods loaded
|
||||||
void invocationCounter_init(); // before any methods loaded
|
void invocationCounter_init(); // before any methods loaded
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue