Skip to content

Commit

Permalink
Workaround for old clang
Browse files Browse the repository at this point in the history
  • Loading branch information
sadko4u committed Oct 10, 2023
1 parent 99f9893 commit 69dff48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/private/dsp/arch/x86/sse/complex.h
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ namespace lsp
(
COMPLEX_DIV2_CORE("dst_re", "dst_im", "dst_re", "dst_im", "src_re", "src_im")
: [off] "=&r" (off),
[count] __ASM_ARG_RW(count)
[count] X86_GREG(count)
: [dst_re] "r" (dst_re), [dst_im] "r" (dst_im),
[src_re] "r" (src_re), [src_im] "r" (src_im),
[CC] "o" (complex_div_const)
Expand All @@ -278,7 +278,7 @@ namespace lsp
(
COMPLEX_DIV2_CORE("dst_re", "dst_im", "src_re", "src_im", "dst_re", "dst_im")
: [off] "=&r" (off),
[count] __ASM_ARG_RW(count)
[count] X86_GREG(count)
: [dst_re] "r" (dst_re), [dst_im] "r" (dst_im),
[src_re] "r" (src_re), [src_im] "r" (src_im),
[CC] "o" (complex_div_const)
Expand Down

0 comments on commit 69dff48

Please sign in to comment.