From 0950fc5e8769ead225753eafdb7acad319945b39 Mon Sep 17 00:00:00 2001 From: Dean Long <17332032+dean-long@users.noreply.github.com> Date: Thu, 12 Jun 2025 12:49:09 -0700 Subject: [PATCH] more cleanup --- src/hotspot/os/windows/os_windows.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/hotspot/os/windows/os_windows.cpp b/src/hotspot/os/windows/os_windows.cpp index 9e536d2df97..24969683a1f 100644 --- a/src/hotspot/os/windows/os_windows.cpp +++ b/src/hotspot/os/windows/os_windows.cpp @@ -2752,19 +2752,6 @@ LONG WINAPI topLevelExceptionFilter(struct _EXCEPTION_POINTERS* exceptionInfo) { } } -#ifdef _M_ARM64 - if (in_java && - (exception_code == EXCEPTION_ILLEGAL_INSTRUCTION || - exception_code == EXCEPTION_ILLEGAL_INSTRUCTION_2)) { - if (nativeInstruction_at(pc)->is_sigill_not_entrant()) { - if (TraceTraps) { - tty->print_cr("trap: not_entrant"); - } - return Handle_Exception(exceptionInfo, SharedRuntime::get_handle_wrong_method_stub()); - } - } -#endif - if (in_java) { switch (exception_code) { case EXCEPTION_INT_DIVIDE_BY_ZERO: