Browse Source

Merge commit 'ad76e6e7e193b98e7335156422d35467816f9ef1'

* commit 'ad76e6e7e193b98e7335156422d35467816f9ef1':
  x86inc: Set ELF hidden visibility for global constants

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 12 years ago
parent
commit
faafffaf82
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavutil/x86/x86inc.asm

+ 5
- 1
libavutil/x86/x86inc.asm View File

@@ -728,7 +728,11 @@ BRANCH_INSTR jz, je, jnz, jne, jl, jle, jnl, jnle, jg, jge, jng, jnge, ja, jae,

%macro const 1-2+
%xdefine %1 mangle(private_prefix %+ _ %+ %1)
global %1
%ifidn __OUTPUT_FORMAT__,elf
global %1:data hidden
%else
global %1
%endif
%1: %2
%endmacro



Loading…
Cancel
Save