GNU/Hurd: unconditionally use inline stack probes
LLVM 11 has been unsupported since 45591408b1
,
so this doesn't need to be conditional on the LLVM version.
This commit is contained in:
parent
d6affcf520
commit
c8ded52601
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ pub fn target() -> Target {
|
||||||
base.cpu = "pentiumpro".into();
|
base.cpu = "pentiumpro".into();
|
||||||
base.max_atomic_width = Some(64);
|
base.max_atomic_width = Some(64);
|
||||||
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);
|
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 {
|
Target {
|
||||||
llvm_target: "i686-unknown-hurd-gnu".into(),
|
llvm_target: "i686-unknown-hurd-gnu".into(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue