1
Fork 0

Don't panic about debug info for Arm64 Windows unwind info

This commit is contained in:
Daniel Paoliello 2024-09-29 19:40:37 -07:00 committed by Daniel Paoliello
parent c28d433bd9
commit bcb7de3bb6

View file

@ -60,8 +60,8 @@ impl UnwindContext {
self.frame_table
.add_fde(self.cie_id.unwrap(), unwind_info.to_fde(address_for_func(func_id)));
}
UnwindInfo::WindowsX64(_) => {
// FIXME implement this
UnwindInfo::WindowsX64(_) | UnwindInfo::WindowsArm64(_) => {
// Windows does not have debug info for its unwind info.
}
unwind_info => unimplemented!("{:?}", unwind_info),
}