[SPCA] Format

This commit is contained in:
2026-01-11 08:05:05 +01:00
parent 35c06e4edf
commit acffe6b3e6
4 changed files with 24 additions and 24 deletions

View File

@@ -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