Skip to content

Commit ea4ce7c

Browse files
committed
Fix %undef statement
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.
1 parent 15f47f5 commit ea4ce7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/x86/sse.asm

+2-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,8 @@ cglobal weighted_sse_%1x%2, 6, 10, 9, \
441441
%endif
442442
RET
443443

444-
%undef sum, kernel_width, res
444+
%undef sum
445+
%undef kernel_width
445446
%endmacro
446447

447448
INIT_XMM ssse3

0 commit comments

Comments
 (0)