small fix

small fix inside ifdef z13mvc . (z13mvc code is not used in production)
This commit is contained in:
Abdelrauf 2018-01-31 07:49:38 -08:00 committed by GitHub
parent f946a89432
commit f653e7a18d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ static void dcopy_kernel_32(BLASLONG n, FLOAT *x, FLOAT *y) {
"brctg %[n_tmp],1b" "brctg %[n_tmp],1b"
: [mem_y] "=m" (*(double (*)[n])y), [n_tmp] "+&r"(n) : [mem_y] "=m" (*(double (*)[n])y), [n_tmp] "+&r"(n)
: [mem_x] "m" (*(const double (*)[n])x), : [mem_x] "m" (*(const double (*)[n])x),
[ptr_x] "a"(x), [ptr_y] "a"(y) [ptr_x] "+&a"(x), [ptr_y] "+&a"(y)
: "cc" : "cc"
); );
return; return;