Skip to content

Commit

Permalink
Rollup merge of rust-lang#119758 - erikdesjardins:hurd, r=petrochenkov
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
GuillaumeGomez authored Jan 9, 2024
2 parents f9cadb9 + c8ded52 commit f41d773
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub fn target() -> Target {
base.cpu = "pentiumpro".into();
base.max_atomic_width = Some(64);
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);
base.stack_probes = StackProbeType::InlineOrCall { min_llvm_version_for_inline: (11, 0, 1) };
base.stack_probes = StackProbeType::Inline;

Target {
llvm_target: "i686-unknown-hurd-gnu".into(),
Expand Down

0 comments on commit f41d773

Please sign in to comment.