diff options
| author | Amanieu d'Antras <amanieu@gmail.com> | 2021-12-10 00:15:33 +0000 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2021-12-12 11:20:03 +0000 |
| commit | eec5f919e78d11a314d87e7c178743597749de9a (patch) | |
| tree | 79da0cb4e6ecfac9629f49c532bc4d2f85e86274 | |
| parent | c6009ca30f13a00a025e0470be23e4d47803198d (diff) | |
| download | rust-eec5f919e78d11a314d87e7c178743597749de9a.tar.gz rust-eec5f919e78d11a314d87e7c178743597749de9a.zip | |
Stabilize asm! and global_asm!
They are also removed from the prelude as per the decision in https://github.com/rust-lang/rust/issues/87228. stdarch and compiler-builtins are updated to work with the new, stable asm! and global_asm! macros.
| -rw-r--r-- | tests/run/asm.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/run/asm.rs b/tests/run/asm.rs index 9c0055b0b6b..48c0203d594 100644 --- a/tests/run/asm.rs +++ b/tests/run/asm.rs @@ -3,8 +3,6 @@ // Run-time: // status: 0 -#![feature(asm, global_asm)] - global_asm!(" .global add_asm add_asm: |
