mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-18 09:53:26 +00:00
8 lines
136 B
ArmAsm
8 lines
136 B
ArmAsm
.text
|
|
.global cc_plus_one_asm
|
|
.type cc_plus_one_asm, @function
|
|
cc_plus_one_asm:
|
|
movl (%rdi), %eax
|
|
inc %eax
|
|
retq
|