Skip to content

Commit d2c20a7

Browse files
committed
Workaround for old clang
1 parent 99f9893 commit d2c20a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/private/dsp/arch/x86/sse/complex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ namespace lsp
261261
(
262262
COMPLEX_DIV2_CORE("dst_re", "dst_im", "dst_re", "dst_im", "src_re", "src_im")
263263
: [off] "=&r" (off),
264-
[count] __ASM_ARG_RW(count)
264+
[count] X86_PGREG(count)
265265
: [dst_re] "r" (dst_re), [dst_im] "r" (dst_im),
266266
[src_re] "r" (src_re), [src_im] "r" (src_im),
267267
[CC] "o" (complex_div_const)
@@ -278,7 +278,7 @@ namespace lsp
278278
(
279279
COMPLEX_DIV2_CORE("dst_re", "dst_im", "src_re", "src_im", "dst_re", "dst_im")
280280
: [off] "=&r" (off),
281-
[count] __ASM_ARG_RW(count)
281+
[count] X86_PGREG(count)
282282
: [dst_re] "r" (dst_re), [dst_im] "r" (dst_im),
283283
[src_re] "r" (src_re), [src_im] "r" (src_im),
284284
[CC] "o" (complex_div_const)

0 commit comments

Comments
 (0)