i586_unknown_netbsd: use inline stack probes

This is one of the last two targets still using "call" stack probes.
This commit is contained in:
Erik Desjardins 2024-01-26 23:22:48 -05:00
parent b362939be1
commit 3b73e894eb

View file

@ -4,7 +4,7 @@ pub fn target() -> Target {
let mut base = base::netbsd::opts();
base.cpu = "pentium".into();
base.max_atomic_width = Some(64);
base.stack_probes = StackProbeType::Call;
base.stack_probes = StackProbeType::Inline;
Target {
llvm_target: "i586-unknown-netbsdelf".into(),