src/share/vm/prims/methodHandles.cpp

changeset 8739
0b85ccd62409
parent 7795
157895117ad5
child 8758
e7db67a9ddfd
     1.1 --- a/src/share/vm/prims/methodHandles.cpp	Tue Dec 13 10:07:12 2016 -0800
     1.2 +++ b/src/share/vm/prims/methodHandles.cpp	Tue Dec 13 14:37:04 2016 -0500
     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 @@ -679,7 +679,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 @@ -706,7 +706,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