mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
x86inc: clip num_args to 7 on x86-32.
This allows us to unconditionally set the cglobal num_args parameter to a bigger value, thus making writing yasm code even easier than before. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
96c9cc1094
commit
f8d8fe255d
@ -441,6 +441,9 @@ DECLARE_ARG 7, 8, 9, 10, 11, 12, 13, 14
|
||||
%macro PROLOGUE 2-4+ ; #args, #regs, #xmm_regs, arg_names...
|
||||
%assign num_args %1
|
||||
%assign regs_used %2
|
||||
%if num_args > 7
|
||||
%assign num_args 7
|
||||
%endif
|
||||
%if regs_used > 7
|
||||
%assign regs_used 7
|
||||
%endif
|
||||
|
Loading…
Reference in New Issue
Block a user