about summary refs log tree commit diff
path: root/library/alloc
diff options
context:
space:
mode:
authorTrevor Gross <t.gross35@gmail.com>2025-02-23 14:30:27 -0500
committerGitHub <noreply@github.com>2025-02-23 14:30:27 -0500
commitfb54acd70077a0ca63373c07c2fec4805c6ada99 (patch)
treee2a6978d8187e39ba03a3394e743c4a13215c835 /library/alloc
parent5f35f780a47869232584389dba276ba53a05975c (diff)
parent08f1086bf06796f95cf83e140b8304d77081535d (diff)
downloadrust-fb54acd70077a0ca63373c07c2fec4805c6ada99.tar.gz
rust-fb54acd70077a0ca63373c07c2fec4805c6ada99.zip
Rollup merge of #137297 - tgross35:update-builtins, r=tgross35
Update `compiler-builtins` to 0.1.147

Removes an ABI hack that used `<2 x i64>` to return `i128` in `xmm0` on Windows [1].

[1]: https://github.com/rust-lang/compiler-builtins/pull/759
Link: https://github.com/rust-lang/rust/issues/116558
Link: https://github.com/rust-lang/compiler-builtins/issues/758

try-job: x86_64-mingw-1
try-job: x86_64-mingw-2
Diffstat (limited to 'library/alloc')
-rw-r--r--library/alloc/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml
index 395cff13189..6f9074d91b0 100644
--- a/library/alloc/Cargo.toml
+++ b/library/alloc/Cargo.toml
@@ -12,7 +12,7 @@ edition = "2021"
 
 [dependencies]
 core = { path = "../core", public = true }
-compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std'] }
+compiler_builtins = { version = "=0.1.147", features = ['rustc-dep-of-std'] }
 
 [dev-dependencies]
 rand = { version = "0.9.0", default-features = false, features = ["alloc"] }