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

Unified Diff: third_party/boringssl/mac-x86_64/crypto/rc4/rc4-x86_64.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_64/crypto/rc4/rc4-x86_64.S
diff --git a/third_party/boringssl/mac-x86_64/crypto/rc4/rc4-x86_64.S b/third_party/boringssl/mac-x86_64/crypto/rc4/rc4-x86_64.S
index 8b899639ff4304fdca4faba8dee2b6707296147e..ba03d42c86a34f7d25ba24e0ab9540ce513c92f6 100644
--- a/third_party/boringssl/mac-x86_64/crypto/rc4/rc4-x86_64.S
+++ b/third_party/boringssl/mac-x86_64/crypto/rc4/rc4-x86_64.S
@@ -2,10 +2,12 @@
.text
-.globl _RC4
+.globl _asm_RC4
+.private_extern _asm_RC4
.p2align 4
-_RC4: orq %rsi,%rsi
+_asm_RC4:
+ orq %rsi,%rsi
jne L$entry
.byte 0xf3,0xc3
L$entry:
@@ -519,10 +521,11 @@ L$exit:
L$epilogue:
.byte 0xf3,0xc3
-.globl _RC4_set_key
+.globl _asm_RC4_set_key
+.private_extern _asm_RC4_set_key
.p2align 4
-_RC4_set_key:
+_asm_RC4_set_key:
leaq 8(%rdi),%rdi
leaq (%rdx,%rsi,1),%rdx
negq %rsi
@@ -593,6 +596,7 @@ L$exit_key:
.globl _RC4_options
+.private_extern _RC4_options
.p2align 4
_RC4_options:

Powered by Google App Engine
This is Rietveld 408576698