comparison src/cpu/ppc/vm/frame_ppc.cpp @ 14433:018b357638aa

8028514: PPC64: Fix C++ Interpreter after '7195622: CheckUnhandledOops has limited usefulness now' Summary: fix CPP-interpreter after CheckUnhandledOops was re-enabled in the fastdebug build Reviewed-by: kvn, dholmes, lfoltan
author simonis
date Tue, 19 Nov 2013 11:53:58 -0800
parents ec28f9c041ff
children 67fa91961822
comparison
equal deleted inserted replaced
14432:935bf3340572 14433:018b357638aa
186 186
187 switch (method->result_type()) { 187 switch (method->result_type()) {
188 case T_OBJECT: 188 case T_OBJECT:
189 case T_ARRAY: { 189 case T_ARRAY: {
190 oop* obj_p = *(oop**)lresult; 190 oop* obj_p = *(oop**)lresult;
191 oop obj = (obj_p == NULL) ? NULL : *obj_p; 191 oop obj = (obj_p == NULL) ? (oop)NULL : *obj_p;
192 assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check"); 192 assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check");
193 *oop_result = obj; 193 *oop_result = obj;
194 break; 194 break;
195 } 195 }
196 // We use std/stfd to store the values. 196 // We use std/stfd to store the values.