src/cpu/zero/vm/cppInterpreter_zero.cpp

changeset 2658
c7f3d0b4570f
parent 2314
f95d63e2154a
child 2762
4b95bbb36464
child 2781
e1162778c1c8
     1.1 --- a/src/cpu/zero/vm/cppInterpreter_zero.cpp	Fri Mar 18 15:52:42 2011 -0700
     1.2 +++ b/src/cpu/zero/vm/cppInterpreter_zero.cpp	Fri Mar 18 16:00:34 2011 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
     1.8   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.9   *
    1.10 @@ -281,7 +281,7 @@
    1.11  
    1.12      if (method->is_static()) {
    1.13        istate->set_oop_temp(
    1.14 -        method->constants()->pool_holder()->klass_part()->java_mirror());
    1.15 +        method->constants()->pool_holder()->java_mirror());
    1.16        mirror = istate->oop_temp_addr();
    1.17        *(dst++) = &mirror;
    1.18      }
    1.19 @@ -667,7 +667,7 @@
    1.20        (BasicObjectLock *) stack->alloc(monitor_words * wordSize);
    1.21      oop object;
    1.22      if (method->is_static())
    1.23 -      object = method->constants()->pool_holder()->klass_part()->java_mirror();
    1.24 +      object = method->constants()->pool_holder()->java_mirror();
    1.25      else
    1.26        object = (oop) locals[0];
    1.27      monitor->set_obj(object);

mercurial