Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
136 B
ArmAsm
Raw Normal View History

.text
.global cc_plus_one_asm
.type cc_plus_one_asm, @function
cc_plus_one_asm:
movl (%rdi), %eax
inc %eax
retq