Skip to content

Commit 1dcd4cb

Browse files
authored
Merge pull request #5472 from pratiklp00/fix_build_issue
Fix typos in Power10 kernel
2 parents b27a118 + d7b1160 commit 1dcd4cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

kernel/power/ddot_microk_power10.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ static double ddot_kernel_8 (long n, double *x, double *y)
119119
"+b" (y) // 3
120120
:
121121
"m" (*(const double (*)[n]) x),
122-
"m" (*(const double (*)[n]) y),
122+
"m" (*(const double (*)[n]) y)
123123
:
124124
"cr0",
125125
"vs32","vs33","vs34","vs35","vs36","vs37","vs38","vs39",

kernel/power/sasum_microk_power10.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ static float sasum_kernel_32 (long n, float *x)
141141
"=wa" (t2), // 5
142142
"=wa" (t3) // 6
143143
:
144-
"m" (*(const float (*)[n]) x),
144+
"m" (*(const float (*)[n]) x)
145145
:
146146
"cr0",
147147
"vs32","vs33","vs34","vs35","vs36","vs37","vs38","vs39",

kernel/power/zaxpy_microk_power10.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ static void zaxpy_kernel_4 (long n, double *x, double *y,
225225
"=b" (ytmp) // 12
226226
:
227227
"m" (*(const double (*)[n * 2]) x),
228-
"m" (*(const double (*)[2]) mvecp)
228+
"m" (*(const double (*)[2]) mvecp),
229229
230230
"d" (alpha_r), // 15
231231
"d" (alpha_i), // 16

0 commit comments

Comments
 (0)