src/cpu/zero/vm/bytecodeInterpreter_zero.hpp

changeset 4037
da91efe96a93
parent 2762
4b95bbb36464
child 6483
018b357638aa
     1.1 --- a/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp	Fri Aug 31 16:39:35 2012 -0700
     1.2 +++ b/src/cpu/zero/vm/bytecodeInterpreter_zero.hpp	Sat Sep 01 13:25:18 2012 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * Copyright 2007, 2008, 2011 Red Hat, Inc.
     1.8   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.9   *
    1.10 @@ -41,7 +41,7 @@
    1.11    inline void set_locals(intptr_t* new_locals) {
    1.12      _locals = new_locals;
    1.13    }
    1.14 -  inline void set_method(methodOop new_method) {
    1.15 +  inline void set_method(Method* new_method) {
    1.16      _method = new_method;
    1.17    }
    1.18    inline interpreterState self_link() {
    1.19 @@ -68,7 +68,7 @@
    1.20    inline void set_thread(JavaThread* new_thread) {
    1.21      _thread = new_thread;
    1.22    }
    1.23 -  inline void set_constants(constantPoolCacheOop new_constants) {
    1.24 +  inline void set_constants(ConstantPoolCache* new_constants) {
    1.25      _constants = new_constants;
    1.26    }
    1.27    inline oop oop_temp() {

mercurial