Skip to content

Commit f653e7a

Browse files
small fix
small fix inside ifdef z13mvc . (z13mvc code is not used in production)
1 parent f946a89 commit f653e7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/zarch/dcopy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ static void dcopy_kernel_32(BLASLONG n, FLOAT *x, FLOAT *y) {
4444
"brctg %[n_tmp],1b"
4545
: [mem_y] "=m" (*(double (*)[n])y), [n_tmp] "+&r"(n)
4646
: [mem_x] "m" (*(const double (*)[n])x),
47-
[ptr_x] "a"(x), [ptr_y] "a"(y)
47+
[ptr_x] "+&a"(x), [ptr_y] "+&a"(y)
4848
: "cc"
4949
);
5050
return;

0 commit comments

Comments
 (0)