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:
torne 2015-01-13 08:37:34 -08:00 committed by Commit bot
parent 6f07665768
commit 60f8353f68
3 changed files with 4 additions and 0 deletions

View File

@ -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
/*

View File

@ -21,6 +21,7 @@
.fpu neon
.align 4
.globl memset16_neon
.hidden memset16_neon
memset16_neon:
cmp r2, #0

View File

@ -9,6 +9,7 @@
.fpu neon
.align 4
.globl memset32_neon
.hidden memset32_neon
/* r0 = buffer, r1 = value, r2 = times to write */
memset32_neon: