]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_target/src/spec/x86_64_wrs_vxworks.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / x86_64_wrs_vxworks.rs
index a066f110e0be509d747727e9ec300c50bcf21ebb..1b35e813fcd8f1406033dfb4fcab3543800c81ab 100644 (file)
@@ -5,8 +5,7 @@ pub fn target() -> Target {
     base.cpu = "x86-64".to_string();
     base.max_atomic_width = Some(64);
     base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m64".to_string());
-    // don't use probe-stack=inline-asm until rust-lang/rust#83139 is resolved.
-    base.stack_probes = StackProbeType::Call;
+    base.stack_probes = StackProbeType::InlineOrCall { min_llvm_version_for_inline: (11, 0, 1) };
     base.disable_redzone = true;
 
     Target {