Skip to content

Commit ee8b035

Browse files
Rollup merge of rust-lang#112763 - Patryk27:bump-compiler-builtins, r=Amanieu
Bump compiler_builtins Actually closes rust-lang#108489. Note that the example code given [in compiler_builtins](rust-lang/compiler-builtins#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.
2 parents 4a01a38 + 70ce213 commit ee8b035

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -697,9 +697,9 @@ dependencies = [
697697

698698
[[package]]
699699
name = "compiler_builtins"
700-
version = "0.1.92"
700+
version = "0.1.93"
701701
source = "registry+https://github.com/rust-lang/crates.io-index"
702-
checksum = "64518f1ae689f74db058bbfb3238dfe6eb53f59f4ae712f1ff4348628522e190"
702+
checksum = "76630810d973ecea3dbf611e1b7aecfb1012751ef1ff8de3998f89014a166781"
703703
dependencies = [
704704
"cc",
705705
"rustc-std-workspace-core",

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
1818
panic_abort = { path = "../panic_abort" }
1919
core = { path = "../core", public = true }
2020
libc = { version = "0.2.146", default-features = false, features = ['rustc-dep-of-std'], public = true }
21-
compiler_builtins = { version = "0.1.92" }
21+
compiler_builtins = { version = "0.1.93" }
2222
profiler_builtins = { path = "../profiler_builtins", optional = true }
2323
unwind = { path = "../unwind" }
2424
hashbrown = { version = "0.14", default-features = false, features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)