mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-01-12 08:08:25 +00:00
[SPCA] Format
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
absdiff:
|
||||
movl %edi, %eax
|
||||
subl %esi, %eax // arg2 - arg1 -> eax
|
||||
subl %esi, %eax # arg2 - arg1 -> eax
|
||||
movl %esi, %edx
|
||||
subl %edi, %edx // arg1 - arg2 -> edx
|
||||
cmpl %esi, %edi // Set condition flags
|
||||
cmovle %edx, %eax // edx -> eax, only if eax <= edx
|
||||
ret
|
||||
subl %edi, %edx # arg1 - arg2 -> edx
|
||||
cmpl %esi, %edi # Set condition flags
|
||||
cmovle %edx, %eax # edx -> eax, only if eax <= edx
|
||||
ret
|
||||
|
||||
Reference in New Issue
Block a user