Skip to content

Commit 7f464be

Browse files
committed
Auto merge of #104607 - matthiaskrgr:rollup-9s589me, r=matthiaskrgr
Rollup of 10 pull requests Successful merges: - #103117 (Use `IsTerminal` in place of `atty`) - #103969 (Partial support for running UI tests with `download-rustc`) - #103989 (Fix build of std for thumbv7a-pc-windows-msvc) - #104076 (fix sysroot issue which appears for ci downloaded rustc) - #104469 (Make "long type" printing type aware and trim types in E0275) - #104497 (detect () to avoid redundant <> suggestion for type) - #104577 (Don't focus on notable trait parent when hiding it) - #104587 (Update cargo) - #104593 (Improve spans for RPITIT object-safety errors) - #104604 (Migrate top buttons style to CSS variables) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 33af170 + 13ecb82 commit 7f464be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

panic_unwind/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ cfg_if::cfg_if! {
4242
// L4Re is unix family but does not yet support unwinding.
4343
#[path = "dummy.rs"]
4444
mod real_imp;
45-
} else if #[cfg(target_env = "msvc")] {
45+
} else if #[cfg(all(target_env = "msvc", not(target_arch = "arm")))] {
46+
// LLVM does not support unwinding on 32 bit ARM msvc (thumbv7a-pc-windows-msvc)
4647
#[path = "seh.rs"]
4748
mod real_imp;
4849
} else if #[cfg(any(

0 commit comments

Comments
 (0)