mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8055231: ZERO variant build is broken
Fix zero build. Reviewed-by: coleenp
This commit is contained in:
parent
2d98294837
commit
31f98c26fc
3 changed files with 4 additions and 2 deletions
|
@ -731,7 +731,7 @@ InterpreterFrame *InterpreterFrame::build(Method* const method, TRAPS) {
|
|||
if (method->is_static())
|
||||
object = method->constants()->pool_holder()->java_mirror();
|
||||
else
|
||||
object = (oop) locals[0];
|
||||
object = (oop) (void*)locals[0];
|
||||
monitor->set_obj(object);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue