about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-03-20 02:12:40 +0000
committerTrevor Gross <tmgross@umich.edu>2025-03-24 00:29:21 +0000
commit0b2acddf01b58ef4825b5ca68f39d9f2ac86072b (patch)
tree828ac788f81acbacc60ab862ed9ce361b315c59c
parent1986ad7527940a1510a10769be563d56b87deb9e (diff)
downloadrust-0b2acddf01b58ef4825b5ca68f39d9f2ac86072b.tar.gz
rust-0b2acddf01b58ef4825b5ca68f39d9f2ac86072b.zip
Update `compiler-builtins` to 0.1.152
Includes the following changes related to unordered atomics:

* Remove element_unordered_atomic intrinsics [1]
* Remove use of `atomic_load_unordered` and undefined behaviour [2]

There are a handful of other small changes, but nothing else
user-visible.

[1]: https://github.com/rust-lang/compiler-builtins/pull/789
[2]: https://github.com/rust-lang/compiler-builtins/pull/790
-rw-r--r--patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch b/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
index 754025ff49d..34249ea4834 100644
--- a/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
+++ b/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
@@ -16,8 +16,8 @@ index 7165c3e48af..968552ad435 100644
  
  [dependencies]
  core = { path = "../core", public = true }
--compiler_builtins = { version = "=0.1.151", features = ['rustc-dep-of-std'] }
-+compiler_builtins = { version = "=0.1.151", features = ['rustc-dep-of-std', 'no-f16-f128'] }
+-compiler_builtins = { version = "=0.1.152", features = ['rustc-dep-of-std'] }
++compiler_builtins = { version = "=0.1.152", features = ['rustc-dep-of-std', 'no-f16-f128'] }
  
  [features]
  compiler-builtins-mem = ['compiler_builtins/mem']