We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91135df commit 1ecc274Copy full SHA for 1ecc274
src/unwind/unwind_with_rtlvirtualunwind.cpp
@@ -57,7 +57,6 @@ namespace detail {
57
// Same adjustment as StackWalk64
58
trace.push_back(to_frame_ptr(context_pc(context)) - 1);
59
}
60
- #if defined(_M_X64) || defined(__x86_64__)
61
PVOID handler_data;
62
DWORD64 establisher_frame;
63
RtlVirtualUnwind(
@@ -70,19 +69,6 @@ namespace detail {
70
69
&establisher_frame,
71
NULL
72
);
73
- #elif defined(_M_ARM64) || defined(__aarch64__)
74
- BOOLEAN in_function;
75
- FRAME_POINTERS establisher_frame;
76
- RtlVirtualUnwind(
77
- image_base,
78
- context_pc(context),
79
- function_entry,
80
- &context,
81
- &in_function,
82
- &establisher_frame,
83
- NULL
84
- );
85
- #endif
86
if(context_pc(context) == 0) {
87
break;
88
0 commit comments