summaryrefslogtreecommitdiff
path: root/x86/sha1-compress.asm
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2004-11-17 22:20:36 +0100
committerNiels Möller <nisse@lysator.liu.se>2004-11-17 22:20:36 +0100
commit51838634b95632b7430626839f8ee7a64ab1a92e (patch)
treec4a1f1b461dba56656ad1fae529d49dd0dde6f5c /x86/sha1-compress.asm
parent5c55658f4a337678840dadf378582debcc54ec72 (diff)
downloadnettle-51838634b95632b7430626839f8ee7a64ab1a92e.tar.gz
* x86/sha1-compress.asm: Use C_NAME for global symbols.
* x86/aes-encrypt.asm: Likewise. * x86/aes-decrypt.asm: Likewise. * x86/arcfour-crypt.asm: Likewise. Rev: src/nettle/x86/aes-decrypt.asm:1.20 Rev: src/nettle/x86/aes-encrypt.asm:1.21 Rev: src/nettle/x86/arcfour-crypt.asm:1.12 Rev: src/nettle/x86/sha1-compress.asm:1.6
Diffstat (limited to 'x86/sha1-compress.asm')
-rw-r--r--x86/sha1-compress.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/x86/sha1-compress.asm b/x86/sha1-compress.asm
index b5b135cc..27a1e224 100644
--- a/x86/sha1-compress.asm
+++ b/x86/sha1-compress.asm
@@ -113,9 +113,9 @@ define(<ROUND>, <
.text
.align 16
- .globl _nettle_sha1_compress
- .type _nettle_sha1_compress,@function
-_nettle_sha1_compress:
+ .globl C_NAME(_nettle_sha1_compress)
+ .type C_NAME(_nettle_sha1_compress),@function
+C_NAME(_nettle_sha1_compress):
C save all registers that need to be saved
pushl %ebx C 20(%esp)