comparison src/cpu/x86/vm/frame_x86.hpp @ 8721:47bc9800972c

8006498: #if <symbol> is wrong in the code. Summary: ASSERT and other symbols used incorrectly with #if are supposed to be defined or not. Reviewed-by: dholmes, mikael
author jprovino
date Wed, 06 Mar 2013 13:46:55 -0500
parents da91efe96a93
children b9a918201d47 de6a9e811145
comparison
equal deleted inserted replaced
8720:fad90b102190 8721:47bc9800972c
168 168
169 intptr_t* ptr_at_addr(int offset) const { 169 intptr_t* ptr_at_addr(int offset) const {
170 return (intptr_t*) addr_at(offset); 170 return (intptr_t*) addr_at(offset);
171 } 171 }
172 172
173 #if ASSERT 173 #ifdef ASSERT
174 // Used in frame::sender_for_{interpreter,compiled}_frame 174 // Used in frame::sender_for_{interpreter,compiled}_frame
175 static void verify_deopt_original_pc( nmethod* nm, intptr_t* unextended_sp, bool is_method_handle_return = false); 175 static void verify_deopt_original_pc( nmethod* nm, intptr_t* unextended_sp, bool is_method_handle_return = false);
176 static void verify_deopt_mh_original_pc(nmethod* nm, intptr_t* unextended_sp) { 176 static void verify_deopt_mh_original_pc(nmethod* nm, intptr_t* unextended_sp) {
177 verify_deopt_original_pc(nm, unextended_sp, true); 177 verify_deopt_original_pc(nm, unextended_sp, true);
178 } 178 }