aboutsummaryrefslogtreecommitdiff
path: root/src/os_cpu/windows_x86/vm/os_windows_x86.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_cpu/windows_x86/vm/os_windows_x86.cpp')
-rw-r--r--src/os_cpu/windows_x86/vm/os_windows_x86.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_cpu/windows_x86/vm/os_windows_x86.cpp b/src/os_cpu/windows_x86/vm/os_windows_x86.cpp
index a25040459..ff8cdd6ff 100644
--- a/src/os_cpu/windows_x86/vm/os_windows_x86.cpp
+++ b/src/os_cpu/windows_x86/vm/os_windows_x86.cpp
@@ -369,7 +369,7 @@ frame os::current_frame() {
// apparently _asm not supported on windows amd64
typedef intptr_t* get_fp_func ();
get_fp_func* func = CAST_TO_FN_PTR(get_fp_func*,
- StubRoutines::amd64::get_previous_fp_entry());
+ StubRoutines::x86::get_previous_fp_entry());
if (func == NULL) return frame(NULL, NULL, NULL);
intptr_t* fp = (*func)();
#else