comparison src/os_cpu/windows_x86/vm/os_windows_x86.cpp @ 304:dc7f315e41f7

5108146: Merge i486 and amd64 cpu directories 6459804: Want client (c1) compiler for x86_64 (amd64) for faster start-up Reviewed-by: kvn
author never
date Wed, 27 Aug 2008 00:21:55 -0700
parents a61af66fc99e
children 9ee9cf798b59
comparison
equal deleted inserted replaced
303:fa4d1d240383 304:dc7f315e41f7
367 367
368 #ifdef AMD64 368 #ifdef AMD64
369 // apparently _asm not supported on windows amd64 369 // apparently _asm not supported on windows amd64
370 typedef intptr_t* get_fp_func (); 370 typedef intptr_t* get_fp_func ();
371 get_fp_func* func = CAST_TO_FN_PTR(get_fp_func*, 371 get_fp_func* func = CAST_TO_FN_PTR(get_fp_func*,
372 StubRoutines::amd64::get_previous_fp_entry()); 372 StubRoutines::x86::get_previous_fp_entry());
373 if (func == NULL) return frame(NULL, NULL, NULL); 373 if (func == NULL) return frame(NULL, NULL, NULL);
374 intptr_t* fp = (*func)(); 374 intptr_t* fp = (*func)();
375 #else 375 #else
376 intptr_t* fp = _get_previous_fp(); 376 intptr_t* fp = _get_previous_fp();
377 #endif // AMD64 377 #endif // AMD64