Skip to content

Commit

Permalink
Fix %undef statement
Browse files Browse the repository at this point in the history
NASM warns that everything after the first argument is ignored,
so each %undef needs its own line. There seems to be no
res macro, so I removed the %undef for it.
  • Loading branch information
FreezyLemon authored and barrbrain committed Jan 12, 2024
1 parent 585b244 commit 7f5d35c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/x86/sse.asm
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,8 @@ cglobal weighted_sse_%1x%2, 6, 10, 9, \
%endif
RET

%undef sum, kernel_width, res
%undef sum
%undef kernel_width
%endmacro

INIT_XMM ssse3
Expand Down

0 comments on commit 7f5d35c

Please sign in to comment.