Skip to content

Commit

Permalink
i586_unknown_netbsd: use inline stack probes
Browse files Browse the repository at this point in the history
This is one of the last two targets still using "call" stack probes.
  • Loading branch information
erikdesjardins committed Jan 27, 2024
1 parent b362939 commit 3b73e89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 3b73e89

Please sign in to comment.