diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2021-12-30 15:36:30 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2021-12-30 15:36:30 +0100 |
| commit | 31482a94a0694f829023e31471d53e3821ccabf5 (patch) | |
| tree | b128416e4407787c2d5dba6bd45dc6d97dfdb78c | |
| parent | 049b6aeba4e9b89dd5ed6990609d50926af8db86 (diff) | |
| download | rust-31482a94a0694f829023e31471d53e3821ccabf5.tar.gz rust-31482a94a0694f829023e31471d53e3821ccabf5.zip | |
Import std::arch::asm
| -rw-r--r-- | tests/run/asm.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/run/asm.rs b/tests/run/asm.rs index 42572bdedf0..9a24915edcd 100644 --- a/tests/run/asm.rs +++ b/tests/run/asm.rs @@ -3,6 +3,8 @@ // Run-time: // status: 0 +use std::arch::{asm, global_asm}; + global_asm!(" .global add_asm add_asm: |
