mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'ad76e6e7e193b98e7335156422d35467816f9ef1'
* commit 'ad76e6e7e193b98e7335156422d35467816f9ef1': x86inc: Set ELF hidden visibility for global constants Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
faafffaf82
|
@ -728,7 +728,11 @@ BRANCH_INSTR jz, je, jnz, jne, jl, jle, jnl, jnle, jg, jge, jng, jnge, ja, jae,
|
||||||
|
|
||||||
%macro const 1-2+
|
%macro const 1-2+
|
||||||
%xdefine %1 mangle(private_prefix %+ _ %+ %1)
|
%xdefine %1 mangle(private_prefix %+ _ %+ %1)
|
||||||
global %1
|
%ifidn __OUTPUT_FORMAT__,elf
|
||||||
|
global %1:data hidden
|
||||||
|
%else
|
||||||
|
global %1
|
||||||
|
%endif
|
||||||
%1: %2
|
%1: %2
|
||||||
%endmacro
|
%endmacro
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue