src/share/vm/oops/instanceKlass.cpp

changeset 9507
7e72702243a4
parent 9355
792ccf73293a
child 9572
624a0741915c
child 9690
61d955db2a5b
     1.1 --- a/src/share/vm/oops/instanceKlass.cpp	Sun Oct 14 20:44:38 2018 -0400
     1.2 +++ b/src/share/vm/oops/instanceKlass.cpp	Tue Oct 16 10:40:23 2018 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2018, 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 @@ -581,7 +581,7 @@
    1.11    // 1) Verify the bytecodes
    1.12    Verifier::Mode mode =
    1.13      throw_verifyerror ? Verifier::ThrowException : Verifier::NoException;
    1.14 -  return Verifier::verify(this_oop, mode, this_oop->should_verify_class(), CHECK_false);
    1.15 +  return Verifier::verify(this_oop, mode, this_oop->should_verify_class(), THREAD);
    1.16  }
    1.17  
    1.18  
    1.19 @@ -1195,7 +1195,7 @@
    1.20    if (or_null) {
    1.21      return oak->array_klass_or_null(n);
    1.22    }
    1.23 -  return oak->array_klass(n, CHECK_NULL);
    1.24 +  return oak->array_klass(n, THREAD);
    1.25  }
    1.26  
    1.27  Klass* InstanceKlass::array_klass_impl(bool or_null, TRAPS) {

mercurial