about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2023-06-23 19:47:20 -0700
committerGitHub <noreply@github.com>2023-06-23 19:47:20 -0700
commitee8b035faba3728644d36fbb689feb8047b965e6 (patch)
treeceefec872479a72a3a7733a5ba5140c9221c90c4 /library/std
parent4a01a38466a452c65f124577bcc21af386317bb8 (diff)
parent70ce2139e85db8523585bc182bc23ea953171bdd (diff)
downloadrust-ee8b035faba3728644d36fbb689feb8047b965e6.tar.gz
rust-ee8b035faba3728644d36fbb689feb8047b965e6.zip
Rollup merge of #112763 - Patryk27:bump-compiler-builtins, r=Amanieu
Bump compiler_builtins

Actually closes https://github.com/rust-lang/rust/issues/108489.

Note that the example code given [in compiler_builtins](https://github.com/rust-lang/compiler-builtins/pull/527) doesn't compile on current rustc since we're still waiting for https://reviews.llvm.org/D153197 (aka `LLVM ERROR: Expected a constant shift amount!`), but it's a step forward anyway.
Diffstat (limited to 'library/std')
-rw-r--r--library/std/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
index af74efa6bf8..aaaa88624f0 100644
--- a/library/std/Cargo.toml
+++ b/library/std/Cargo.toml
@@ -18,7 +18,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
 panic_abort = { path = "../panic_abort" }
 core = { path = "../core", public = true }
 libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'], public = true }
-compiler_builtins = { version = "0.1.92" }
+compiler_builtins = { version = "0.1.93" }
 profiler_builtins = { path = "../profiler_builtins", optional = true }
 unwind = { path = "../unwind" }
 hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] }