mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
HACK: fix compilation with NASM.
This issue is actually already fixed in NASM, however it will be a bit before it arrives everywhere. This should work as a temporary work-around. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
dbb38bc389
commit
03f1caec61
@ -468,9 +468,19 @@ DECLARE_REG 6, ebp, ebp, bp, null, [esp + stack_offset + 28]
|
||||
; Appends cpuflags to the function name if cpuflags has been specified.
|
||||
%macro cglobal 1-2+ ; name, [PROLOGUE args]
|
||||
%if %0 == 1
|
||||
; HACK: work around %+ broken with empty SUFFIX for nasm 2.09.10
|
||||
%ifempty SUFFIX
|
||||
cglobal_internal %1
|
||||
%else
|
||||
cglobal_internal %1 %+ SUFFIX
|
||||
%endif
|
||||
%else
|
||||
; HACK: work around %+ broken with empty SUFFIX for nasm 2.09.10
|
||||
%ifempty SUFFIX
|
||||
cglobal_internal %1, %2
|
||||
%else
|
||||
cglobal_internal %1 %+ SUFFIX, %2
|
||||
%endif
|
||||
%endif
|
||||
%endmacro
|
||||
%macro cglobal_internal 1-2+
|
||||
@ -747,7 +757,12 @@ INIT_XMM
|
||||
|
||||
; Append cpuflags to the callee's name iff the appended name is known and the plain name isn't
|
||||
%macro call 1
|
||||
; HACK: work around %+ broken with empty SUFFIX for nasm 2.09.10
|
||||
%ifempty SUFFIX
|
||||
call_internal %1, %1
|
||||
%else
|
||||
call_internal %1, %1 %+ SUFFIX
|
||||
%endif
|
||||
%endmacro
|
||||
%macro call_internal 2
|
||||
%xdefine %%i %1
|
||||
|
Loading…
Reference in New Issue
Block a user