File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ static bool find_initial_Java_frame(JavaThread* thread,
323323 // See if we can find a useful frame
324324 int loop_count;
325325 int loop_max = MaxJavaStackTraceDepth * 2 ;
326- RegisterMap map (thread, false );
326+ RegisterMap map (thread, false , false );
327327
328328 for (loop_count = 0 ; loop_max == 0 || loop_count < loop_max; loop_count++) {
329329 if (!candidate.safe_for_sender (thread)) return false ;
@@ -337,7 +337,7 @@ static bool find_initial_Java_frame(JavaThread* thread,
337337 // We will hopefully be able to figure out something to do with it.
338338 int loop_count;
339339 int loop_max = MaxJavaStackTraceDepth * 2 ;
340- RegisterMap map (thread, false );
340+ RegisterMap map (thread, false , false );
341341
342342 for (loop_count = 0 ; loop_max == 0 || loop_count < loop_max; loop_count++) {
343343
You can’t perform that action at this time.
0 commit comments