about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-04-03 13:09:08 +0000
committerbors <bors@rust-lang.org>2023-04-03 13:09:08 +0000
commit17675855094906ba90aca2f119be8fb7afc4d456 (patch)
tree2ae2d13bfc4c59106b01c60130bb5ee6cff53665 /library/std
parentf13ccefb5b35af3dbb40a7bbdd64a3216d949664 (diff)
parent01f49b350df806b0fbf9d379bd524f183da7517d (diff)
downloadrust-17675855094906ba90aca2f119be8fb7afc4d456.tar.gz
rust-17675855094906ba90aca2f119be8fb7afc4d456.zip
Auto merge of #109756 - cr1901:msp-shift, r=Mark-Simulacrum
Update compiler-builtins to 0.1.91 to bring in msp430 shift primitive…

… fixes.

This fixes unsoundness on MSP430 where `compiler-builtins` and LLVM didn't agree on the width of the shift amount argument of the shifting primitives (4 bytes vs 2 bytes). See https://github.com/rust-lang/compiler-builtins/pull/522 for more details.
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 6345db24054..96c75f97f6e 100644
--- a/library/std/Cargo.toml
+++ b/library/std/Cargo.toml
@@ -16,7 +16,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
 panic_abort = { path = "../panic_abort" }
 core = { path = "../core" }
 libc = { version = "0.2.140", default-features = false, features = ['rustc-dep-of-std'] }
-compiler_builtins = { version = "0.1.87" }
+compiler_builtins = { version = "0.1.91" }
 profiler_builtins = { path = "../profiler_builtins", optional = true }
 unwind = { path = "../unwind" }
 hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep-of-std'] }