Skip to content

Commit ffdbd58

Browse files
committed
Drop llvm14-builtins-abi with compiler_builtins 0.1.87
1 parent a06aaa4 commit ffdbd58

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -883,9 +883,9 @@ dependencies = [
883883

884884
[[package]]
885885
name = "compiler_builtins"
886-
version = "0.1.85"
886+
version = "0.1.87"
887887
source = "registry+https://github.com/rust-lang/crates.io-index"
888-
checksum = "13e81c6cd7ab79f51a0c927d22858d61ad12bd0b3865f0b13ece02a4486aeabb"
888+
checksum = "f867ce54c09855ccd135ad4a50c777182a0c7af5ff20a8f537617bd648b10d50"
889889
dependencies = [
890890
"cc",
891891
"rustc-std-workspace-core",

compiler/rustc_codegen_llvm/src/llvm_util.rs

+2-11
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ pub fn check_tied_features(
211211
/// Must express features in the way Rust understands them
212212
pub fn target_features(sess: &Session, allow_unstable: bool) -> Vec<Symbol> {
213213
let target_machine = create_informational_target_machine(sess);
214-
let mut features: Vec<Symbol> = supported_target_features(sess)
214+
supported_target_features(sess)
215215
.iter()
216216
.filter_map(|&(feature, gate)| {
217217
if sess.is_nightly_build() || allow_unstable || gate.is_none() {
@@ -231,16 +231,7 @@ pub fn target_features(sess: &Session, allow_unstable: bool) -> Vec<Symbol> {
231231
true
232232
})
233233
.map(|feature| Symbol::intern(feature))
234-
.collect();
235-
236-
// LLVM 14 changed the ABI for i128 arguments to __float/__fix builtins on Win64
237-
// (see https://reviews.llvm.org/D110413). This unstable target feature is intended for use
238-
// by compiler-builtins, to export the builtins with the expected, LLVM-version-dependent ABI.
239-
// The target feature can be dropped once we no longer support older LLVM versions.
240-
if sess.is_nightly_build() {
241-
features.push(Symbol::intern("llvm14-builtins-abi"));
242-
}
243-
features
234+
.collect()
244235
}
245236

246237
pub fn print_version() {

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
1616
panic_abort = { path = "../panic_abort" }
1717
core = { path = "../core" }
1818
libc = { version = "0.2.138", default-features = false, features = ['rustc-dep-of-std'] }
19-
compiler_builtins = { version = "0.1.85" }
19+
compiler_builtins = { version = "0.1.87" }
2020
profiler_builtins = { path = "../profiler_builtins", optional = true }
2121
unwind = { path = "../unwind" }
2222
hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)