diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-11-02 14:53:30 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-11-02 14:53:30 +0000 |
| commit | 60f0cd87e80bc227595d4c42860e3c7ec94ca35f (patch) | |
| tree | a93a94318886f05984ddd24ee7e41354943e7911 /compiler/rustc_codegen_cranelift/src/debuginfo/unwind.rs | |
| parent | 588a4203508ed7c76750c96b482641261630ed36 (diff) | |
| parent | 5b1246bb4bed72fd0bb8fa497d8e5ed2c7f3515c (diff) | |
| download | rust-60f0cd87e80bc227595d4c42860e3c7ec94ca35f.tar.gz rust-60f0cd87e80bc227595d4c42860e3c7ec94ca35f.zip | |
Merge commit '5b1246bb4bed72fd0bb8fa497d8e5ed2c7f3515c' into sync_cg_clif-2024-11-02
Diffstat (limited to 'compiler/rustc_codegen_cranelift/src/debuginfo/unwind.rs')
| -rw-r--r-- | compiler/rustc_codegen_cranelift/src/debuginfo/unwind.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/debuginfo/unwind.rs b/compiler/rustc_codegen_cranelift/src/debuginfo/unwind.rs index 9399230f292..362333d35a4 100644 --- a/compiler/rustc_codegen_cranelift/src/debuginfo/unwind.rs +++ b/compiler/rustc_codegen_cranelift/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), } |
