diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-20 13:09:46 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-11-20 13:09:46 +0100 |
commit | cbaade083f6378381a96eacf76b0d2a522c675ae (patch) | |
tree | 295e58b3e656f492def2478c66bba0938e6d18e7 | |
parent | ebbad63636bf87222d42c23e8cb334c78c1b9233 (diff) | |
download | xine-lib-cbaade083f6378381a96eacf76b0d2a522c675ae.tar.gz xine-lib-cbaade083f6378381a96eacf76b0d2a522c675ae.tar.bz2 |
Mark the PPC asm memcpy() implementations as hidden symbols.
-rw-r--r-- | src/xine-utils/ppcasm_string.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-utils/ppcasm_string.S b/src/xine-utils/ppcasm_string.S index 419a5d7d2..f829e0ae5 100644 --- a/src/xine-utils/ppcasm_string.S +++ b/src/xine-utils/ppcasm_string.S @@ -34,7 +34,8 @@ #define _GLOBFN(n)\ .stabs __stringify(n:F-1),N_FUN,0,0,n;\ .type n,@function; \ - .globl n;\ + .globl n;\ + .hidden n;\ n: #define _SIZE(n) \ |