about summary refs log tree commit diff
path: root/library/alloc
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-04-16 18:27:58 +0000
committerTrevor Gross <tmgross@umich.edu>2025-04-17 19:08:27 +0000
commit7d6f41b08e730572b196d6c588364973bb3cb12b (patch)
tree49a7271b0988aa1043dd035f36038b872a6c3ea4 /library/alloc
parentafa859f8121bf2985362a2c8414dc71a825ccf2d (diff)
downloadrust-7d6f41b08e730572b196d6c588364973bb3cb12b.tar.gz
rust-7d6f41b08e730572b196d6c588364973bb3cb12b.zip
Update `compiler-builtins` to 0.1.155
Includes the following changes:

* Replace `#[naked]` with `#[unsafe(naked)]` [1] [2]
* Replace `bl!` with `asm_sym` [3]

[1]: https://github.com/rust-lang/compiler-builtins/pull/817
[2]: https://github.com/rust-lang/compiler-builtins/pull/821
[3]: https://github.com/rust-lang/compiler-builtins/pull/820
Diffstat (limited to 'library/alloc')
-rw-r--r--library/alloc/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml
index ee8cb9d25a3..cedbd330cbd 100644
--- a/library/alloc/Cargo.toml
+++ b/library/alloc/Cargo.toml
@@ -16,7 +16,7 @@ bench = false
 
 [dependencies]
 core = { path = "../core", public = true }
-compiler_builtins = { version = "=0.1.153", features = ['rustc-dep-of-std'] }
+compiler_builtins = { version = "=0.1.155", features = ['rustc-dep-of-std'] }
 
 [features]
 compiler-builtins-mem = ['compiler_builtins/mem']