Skip to content
Snippets Groups Projects
Commit 9ee9c679 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Janne Grunau
Browse files

x86: videodsp: Fix a bug in a %if statement where we used '%%' instead of '&&'.

parent 51daafb0
No related branches found
No related tags found
No related merge requests found
......@@ -381,7 +381,7 @@ VERTICAL_EXTEND 16, 22
%endif
%if %1-%%off >= 4
%if %1 > 8 %% %1-%%off > 4
%if %1 > 8 && %1-%%off > 4
movq [%2+%1-8], m0
%assign %%off %1
%elif %1 >= 8 && %1-%%off >= 4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment