Skip to content

Commit f5ec1c4

Browse files
committed
fix typos in Power8 routines
Fixes: #5448
1 parent 681af71 commit f5ec1c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kernel/power/zasum_microk_power8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ static double zasum_kernel_8 (long n, double *x)
154154
"=wa" (t2), // 5
155155
"=wa" (t3) // 6
156156
:
157-
"m" (*(const double (*)[n * 2]) x)
157+
"m" (*(const double (*)[n * 2]) x),
158158
"b" (16), // 8
159159
"b" (32), // 9
160160
"b" (48), // 10

kernel/power/zcopy_microk_power8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ static void zcopy_kernel_16 (long n, FLOAT *x, FLOAT *y)
134134

135135
"#n=%1 x=%4=%2 y=%0=%3 o16=%5 o32=%6 o48=%7 o64=%8 o80=%9 o96=%10 o112=%11"
136136
:
137-
"m" (*(FLOAT (*)[n * 2]) y),
137+
"=m" (*(FLOAT (*)[n * 2]) y),
138138
"+r" (n), // 1
139139
"+b" (x), // 2
140140
"+b" (y) // 3

kernel/power/zdot_microk_power8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ static void zdot_kernel_8 (long n, double *x, double *y, double *dot)
186186

187187
"#n=%1 x=%4=%2 y=%5=%3 dot=%0=%6 o16=%7 o32=%8 o48=%9"
188188
:
189-
"=m" (*(double) (*)[4]) dot),
189+
"=m" (*(double (*)[4]) dot),
190190
"+r" (n), // 1
191191
"+b" (x), // 2
192192
"+b" (y) // 3

0 commit comments

Comments
 (0)