diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-10-24 18:56:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-24 18:56:57 +0200 |
| commit | 616abf15d9690d29fa62abbfe70c4139b85f4c50 (patch) | |
| tree | eed839300230f23b6e075215c843e4ad58a55cb5 | |
| parent | c28d433bd98cdb29406e5b5f62a5c8eeb9f74723 (diff) | |
| parent | bcb7de3bb67d2ba26d6a41828debf837ffc62d11 (diff) | |
| download | rust-616abf15d9690d29fa62abbfe70c4139b85f4c50.tar.gz rust-616abf15d9690d29fa62abbfe70c4139b85f4c50.zip | |
Merge pull request #1537 from dpaoliello/debugunwind
Don't panic about debug info for Arm64 Windows unwind info
| -rw-r--r-- | src/debuginfo/unwind.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debuginfo/unwind.rs b/src/debuginfo/unwind.rs index 9399230f292..362333d35a4 100644 --- a/src/debuginfo/unwind.rs +++ b/src/debuginfo/unwind.rs @@ -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), } |
