
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
26 lines
856 B
Diff
26 lines
856 B
Diff
From 175d52c5e1779764b66777db1e6f172c2dc365ff Mon Sep 17 00:00:00 2001
|
|
From: bjorn3 <17426603+bjorn3@users.noreply.github.com>
|
|
Date: Fri, 9 Aug 2024 15:44:51 +0000
|
|
Subject: [PATCH] Disable f16 and f128 in compiler-builtins
|
|
|
|
---
|
|
library/liballoc/Cargo.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/library/liballoc/Cargo.toml b/library/liballoc/Cargo.toml
|
|
index 7165c3e48af..968552ad435 100644
|
|
--- a/library/alloc/Cargo.toml
|
|
+++ b/library/alloc/Cargo.toml
|
|
@@ -11,7 +11,7 @@ test = { path = "../test" }
|
|
bench = false
|
|
|
|
[dependencies]
|
|
core = { path = "../core", public = true }
|
|
-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']
|
|
--
|
|
2.34.1
|
|
|