Skip to content

Commit 616abf1

Browse files
authored
Merge pull request #1537 from dpaoliello/debugunwind
Don't panic about debug info for Arm64 Windows unwind info
2 parents c28d433 + bcb7de3 commit 616abf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/debuginfo/unwind.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ impl UnwindContext {
6060
self.frame_table
6161
.add_fde(self.cie_id.unwrap(), unwind_info.to_fde(address_for_func(func_id)));
6262
}
63-
UnwindInfo::WindowsX64(_) => {
64-
// FIXME implement this
63+
UnwindInfo::WindowsX64(_) | UnwindInfo::WindowsArm64(_) => {
64+
// Windows does not have debug info for its unwind info.
6565
}
6666
unwind_info => unimplemented!("{:?}", unwind_info),
6767
}

0 commit comments

Comments
 (0)