Skip to content

Commit

Permalink
Use tabs for whitespace.
Browse files Browse the repository at this point in the history
Change-Id: Iad303a2123a16636297ae7f701d03916a92357a7
  • Loading branch information
klauspost committed Oct 6, 2021
1 parent ab492a9 commit ec8b15d
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/crypto/md5/md5block_amd64.s
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ loop:
ADDL $const, a; \
ADDL R8, a; \
ANDL b, R9; \
XORL d, R9; \
MOVL (index*4)(SI), R8; \
ADDL R9, a; \
ROLL $shift, a; \
MOVL c, R9; \
ADDL b, a
XORL d, R9; \
MOVL (index*4)(SI), R8; \
ADDL R9, a; \
ROLL $shift, a; \
MOVL c, R9; \
ADDL b, a

ROUND1(AX,BX,CX,DX, 1,0xd76aa478, 7);
ROUND1(DX,AX,BX,CX, 2,0xe8c7b756,12);
Expand All @@ -75,13 +75,13 @@ loop:

#define ROUND2(a, b, c, d, index, const, shift) \
XORL R11, R9; \
ADDL $const, a; \
ADDL R8, a; \
ADDL $const, a; \
ADDL R8, a; \
ANDL b, R10; \
ANDL c, R9; \
MOVL (index*4)(SI),R8; \
ADDL R9, a; \
ADDL R10, a; \
ADDL R9, a; \
ADDL R10, a; \
MOVL c, R9; \
MOVL c, R10; \
ROLL $shift, a; \
Expand Down Expand Up @@ -112,8 +112,8 @@ loop:
MOVL d, R9; \
XORL c, R9; \
XORL b, R9; \
ADDL $const, a; \
ADDL R8, a; \
ADDL $const, a; \
ADDL R8, a; \
MOVL (index*4)(SI),R8; \
ADDL R9, a; \
ROLL $shift, a; \
Expand All @@ -122,8 +122,8 @@ loop:
#define ROUND3(a, b, c, d, index, const, shift) \
XORL a, R9; \
XORL b, R9; \
ADDL $const, a; \
ADDL R8, a; \
ADDL $const, a; \
ADDL R8, a; \
MOVL (index*4)(SI),R8; \
ADDL R9, a; \
ROLL $shift, a; \
Expand All @@ -150,9 +150,9 @@ loop:
XORL DX, R9

#define ROUND4(a, b, c, d, index, const, shift) \
ADDL $const, a; \
ADDL R8, a; \
ORL b, R9; \
ADDL $const, a; \
ADDL R8, a; \
ORL b, R9; \
XORL c, R9; \
ADDL R9, a; \
MOVL (index*4)(SI),R8; \
Expand Down

0 comments on commit ec8b15d

Please sign in to comment.