mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
7018355: JSR 292: VM crash in DefNewGeneration::copy_to_survivor_space
Reviewed-by: kvn, jrose
This commit is contained in:
parent
8753dded1c
commit
0b2d972fd3
6 changed files with 121 additions and 132 deletions
|
@ -276,9 +276,9 @@ class ciMethod : public ciObject {
|
|||
void print_short_name(outputStream* st = tty);
|
||||
|
||||
methodOop get_method_handle_target() {
|
||||
klassOop receiver_limit_oop = NULL;
|
||||
int flags = 0;
|
||||
return MethodHandles::decode_method(get_oop(), receiver_limit_oop, flags);
|
||||
KlassHandle receiver_limit; int flags = 0;
|
||||
methodHandle m = MethodHandles::decode_method(get_oop(), receiver_limit, flags);
|
||||
return m();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue