Skip to content

Commit

Permalink
xglobals: Adjust whitespace
Browse files Browse the repository at this point in the history
(cherry picked from commit 202e227)
Signed-off-by: LIU Hao <[email protected]>
  • Loading branch information
lhmouse committed Aug 9, 2022
1 parent ae71e81 commit 8fc31a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/xglobals.i
Original file line number Diff line number Diff line change
Expand Up @@ -352,11 +352,11 @@ __MCF_mcomp(const void* __src, const void* __cmp, size_t __size) __MCF_NOEXCEPT
uintptr_t __cx = __size;

__asm__ (
/* AT&T Barking | Genuine Intel */
/* AT&T Barking | Genuine Intel */
__MCF_PPSTR(
{ xorl %%eax, %%eax; | xor eax, eax; }
repz cmpsb;
{ setnzb %%al; | setnz al; }
{ setnzb %%al; | setnz al; }
{ sbbl %%ecx, %%ecx; | sbb ecx, ecx; }
)
: "=a"(__result), "+S"(__si), "+D"(__di), "+c"(__cx)
Expand Down Expand Up @@ -397,7 +397,7 @@ __MCF_mequal(const void* __src, const void* __cmp, size_t __size) __MCF_NOEXCEPT
uintptr_t __cx = __size;

__asm__ (
/* AT&T Barking | Genuine Intel */
/* AT&T Barking | Genuine Intel */
__MCF_PPSTR(
{ xorl %%eax, %%eax; | xor eax, eax; }
repz cmpsb;
Expand Down

0 comments on commit 8fc31a2

Please sign in to comment.