Skip to content

Commit

Permalink
short-cut to the local labels so it's pic safe
Browse files Browse the repository at this point in the history
  • Loading branch information
floodyberry committed Nov 2, 2014
1 parent faf54f8 commit 5bf9fa2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/extensions/poly1305/poly1305_avx-32.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FN_END poly1305_block_size_avx

GLOBAL_HIDDEN_FN poly1305_auth_avx
cmp $64, 12(%esp)
jbe poly1305_auth_sse2_local
jbe poly1305_auth_x86_local
pushl %ebp
movl %esp, %ebp
andl $-64, %esp
Expand Down
2 changes: 1 addition & 1 deletion app/extensions/poly1305/poly1305_avx-64.inc
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ FN_END poly1305_finish_ext_avx

GLOBAL_HIDDEN_FN poly1305_auth_avx
cmp $128, %rdx
jb poly1305_auth_x86
jb poly1305_auth_x86_local
pushq %rbp
movq %rsp, %rbp
pushq %r14
Expand Down
2 changes: 1 addition & 1 deletion app/extensions/poly1305/poly1305_avx2-32.inc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FN_END poly1305_block_size_avx2

GLOBAL_HIDDEN_FN poly1305_auth_avx2
cmp $64, 12(%esp)
jbe poly1305_auth_sse2_local
jbe poly1305_auth_x86_local
pushl %ebp
movl %esp, %ebp
andl $-64, %esp
Expand Down
2 changes: 1 addition & 1 deletion app/extensions/poly1305/poly1305_avx2-64.inc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FN_END poly1305_block_size_avx2

GLOBAL_HIDDEN_FN poly1305_auth_avx2
cmp $128, %rdx
jb poly1305_auth_x86
jb poly1305_auth_x86_local
pushq %rbp
movq %rsp, %rbp
andq $-64, %rsp
Expand Down
1 change: 0 additions & 1 deletion app/extensions/poly1305/poly1305_sse2-32.inc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ ret
FN_END poly1305_block_size_sse2

GLOBAL_HIDDEN_FN poly1305_auth_sse2
poly1305_auth_sse2_local:
cmp $64, 12(%esp)
jb poly1305_auth_x86_local
pushl %ebp
Expand Down

0 comments on commit 5bf9fa2

Please sign in to comment.