Skip to content

Commit f41d773

Browse files
Rollup merge of rust-lang#119758 - erikdesjardins:hurd, r=petrochenkov
GNU/Hurd: unconditionally use inline stack probes LLVM 11 has been unsupported since 4559140, so this doesn't need to be conditional on the LLVM version. cc `@sthibaul`
2 parents f9cadb9 + c8ded52 commit f41d773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/targets/i686_unknown_hurd_gnu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub fn target() -> Target {
55
base.cpu = "pentiumpro".into();
66
base.max_atomic_width = Some(64);
77
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);
8-
base.stack_probes = StackProbeType::InlineOrCall { min_llvm_version_for_inline: (11, 0, 1) };
8+
base.stack_probes = StackProbeType::Inline;
99

1010
Target {
1111
llvm_target: "i686-unknown-hurd-gnu".into(),

0 commit comments

Comments
 (0)