Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(600)

Unified Diff: third_party/boringssl/mac-x86/crypto/rc4/rc4-586.S

Issue 428753004: BoringSSL: roll DEPS and enable dynamic visibility. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix quotes in GN file. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/boringssl/mac-x86/crypto/rc4/rc4-586.S
diff --git a/third_party/boringssl/mac-x86/crypto/rc4/rc4-586.S b/third_party/boringssl/mac-x86/crypto/rc4/rc4-586.S
index 841fbda7a849d8f0444ed63bd3886c0cbc83c7a7..faecdfa9f2bc3fbc7aa1e3dd8e712cb39fe8f8fb 100644
--- a/third_party/boringssl/mac-x86/crypto/rc4/rc4-586.S
+++ b/third_party/boringssl/mac-x86/crypto/rc4/rc4-586.S
@@ -1,10 +1,11 @@
#if defined(__i386__)
.file "rc4-586.S"
.text
-.globl _RC4
+.globl _asm_RC4
+.private_extern _asm_RC4
.align 4
-_RC4:
-L_RC4_begin:
+_asm_RC4:
+L_asm_RC4_begin:
pushl %ebp
pushl %ebx
pushl %esi
@@ -265,10 +266,11 @@ L000abort:
popl %ebx
popl %ebp
ret
-.globl _RC4_set_key
+.globl _asm_RC4_set_key
+.private_extern _asm_RC4_set_key
.align 4
-_RC4_set_key:
-L_RC4_set_key_begin:
+_asm_RC4_set_key:
+L_asm_RC4_set_key_begin:
pushl %ebp
pushl %ebx
pushl %esi
@@ -342,6 +344,7 @@ L015exit:
popl %ebp
ret
.globl _RC4_options
+.private_extern _RC4_options
.align 4
_RC4_options:
L_RC4_options_begin:
« no previous file with comments | « third_party/boringssl/mac-x86/crypto/modes/ghash-x86.S ('k') | third_party/boringssl/mac-x86/crypto/sha/sha1-586.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698