Skip to content

Commit

Permalink
Fixes for Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
sadko4u committed Aug 2, 2024
1 parent eade5a4 commit d13dc8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/private/dsp/arch/x86/avx512/convolution.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,10 @@ namespace lsp
__ASM_EMIT("jge 300b")

__ASM_EMIT("400:")
: [dst] __ASM_ARG_RW(dst),
: [dst] __IF32("+m") __IF64("+r") (dst),
[k] "+r" (src), [count] "+r" (count),
[c] "=&r" (c), [d] "=&r" (d), [clen] "=&r" (clen)
: [conv] X86_GREG (conv), [length] X86_GREG (length),
: [conv] "m" (conv), [length] "m" (length),
[CC] "m" (convolve_const)
: "cc", "memory",
"%xmm0", "%xmm1", "%xmm2", "%xmm3",
Expand Down

0 comments on commit d13dc8c

Please sign in to comment.