summary refs log tree commit diff
path: root/library/alloc
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-05-04 22:54:55 +0000
committerTrevor Gross <tmgross@umich.edu>2025-05-04 22:54:55 +0000
commit435fc7d685115cf5bbd986ade8d2327ee6441759 (patch)
tree06cc220b4499d9edfe130f27d04a69711e78de8b /library/alloc
parentab62d56603293e9264b4d811d2d6f5b49a3264f9 (diff)
downloadrust-435fc7d685115cf5bbd986ade8d2327ee6441759.tar.gz
rust-435fc7d685115cf5bbd986ade8d2327ee6441759.zip
Update `compiler-builtins` to 0.1.157
Includes the following changes:

* Use runtime feature detection for fma routines on x86 [1]

Fixes: https://github.com/rust-lang/rust/issues/140452

[1]: https://github.com/rust-lang/compiler-builtins/pull/896
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 994221de866..ebfcf8759fa 100644
--- a/library/alloc/Cargo.toml
+++ b/library/alloc/Cargo.toml
@@ -16,7 +16,7 @@ bench = false
 
 [dependencies]
 core = { path = "../core", public = true }
-compiler_builtins = { version = "=0.1.156", features = ['rustc-dep-of-std'] }
+compiler_builtins = { version = "=0.1.157", features = ['rustc-dep-of-std'] }
 
 [features]
 compiler-builtins-mem = ['compiler_builtins/mem']