Hide ARM assembly memset symbols.
Prevent these symbols from being exported from any library which includes skia by marking them .hidden, as they are implementation details of skia. BUG=skia:3303 Review URL: https://codereview.chromium.org/831663004
This commit is contained in:
parent
6f07665768
commit
60f8353f68
@ -18,8 +18,10 @@
|
||||
.syntax unified
|
||||
|
||||
.global arm_memset32
|
||||
.hidden arm_memset32
|
||||
.type arm_memset32, %function
|
||||
.global arm_memset16
|
||||
.hidden arm_memset16
|
||||
.type arm_memset16, %function
|
||||
|
||||
/*
|
||||
|
@ -21,6 +21,7 @@
|
||||
.fpu neon
|
||||
.align 4
|
||||
.globl memset16_neon
|
||||
.hidden memset16_neon
|
||||
|
||||
memset16_neon:
|
||||
cmp r2, #0
|
||||
|
@ -9,6 +9,7 @@
|
||||
.fpu neon
|
||||
.align 4
|
||||
.globl memset32_neon
|
||||
.hidden memset32_neon
|
||||
|
||||
/* r0 = buffer, r1 = value, r2 = times to write */
|
||||
memset32_neon:
|
||||
|
Loading…
Reference in New Issue
Block a user