src/share/vm/prims/methodHandles.cpp

changeset 8758
e7db67a9ddfd
parent 8721
575f637864df
parent 8739
0b85ccd62409
child 8856
ac27a9c85bea
child 9327
f96fcd9e1e1b
     1.1 --- a/src/share/vm/prims/methodHandles.cpp	Mon Mar 27 08:21:39 2017 -0700
     1.2 +++ b/src/share/vm/prims/methodHandles.cpp	Mon Mar 27 11:31:27 2017 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -673,7 +673,7 @@
    1.11                          defc, name, type, caller, THREAD);
    1.12          } else if (ref_kind == JVM_REF_invokeSpecial) {
    1.13            LinkResolver::resolve_special_call(result,
    1.14 -                        defc, name, type, caller, caller.not_null(), THREAD);
    1.15 +                        Handle(), defc, name, type, caller, caller.not_null(), THREAD);
    1.16          } else if (ref_kind == JVM_REF_invokeVirtual) {
    1.17            LinkResolver::resolve_virtual_call(result, Handle(), defc,
    1.18                          defc, name, type, caller, caller.not_null(), false, THREAD);
    1.19 @@ -700,7 +700,7 @@
    1.20          assert(!HAS_PENDING_EXCEPTION, "");
    1.21          if (name == vmSymbols::object_initializer_name()) {
    1.22            LinkResolver::resolve_special_call(result,
    1.23 -                        defc, name, type, caller, caller.not_null(), THREAD);
    1.24 +                        Handle(), defc, name, type, caller, caller.not_null(), THREAD);
    1.25          } else {
    1.26            break;                // will throw after end of switch
    1.27          }

mercurial