Skip to content

Commit c8ded52

Browse files
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.
1 parent d6affcf commit c8ded52

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)