6994130: Zero PowerPC fix

Fri, 22 Oct 2010 03:34:25 -0700

author
twisti
date
Fri, 22 Oct 2010 03:34:25 -0700
changeset 2263
f195c4737aca
parent 2262
1e9a9d2e6509
child 2264
d2e35ffae982

6994130: Zero PowerPC fix
Summary: 6953477 broke Zero.
Reviewed-by: twisti
Contributed-by: Gary Benson <gbenson@redhat.com>

src/share/vm/runtime/frame.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/runtime/frame.cpp	Thu Oct 21 11:55:10 2010 -0700
     1.2 +++ b/src/share/vm/runtime/frame.cpp	Fri Oct 22 03:34:25 2010 -0700
     1.3 @@ -878,7 +878,7 @@
     1.4  
     1.5  #endif /* CC_INTERP */
     1.6  
     1.7 -#ifndef PPC
     1.8 +#if !defined(PPC) || defined(ZERO)
     1.9    if (m->is_native()) {
    1.10  #ifdef CC_INTERP
    1.11      f->do_oop((oop*)&istate->_oop_temp);

mercurial