Skip to content

Commit 19f8a8d

Browse files
authored
Merge pull request #4839 from martin-frbg/fix4794
Add proper returns in x86_64 s/dscal kernels
2 parents cf483d9 + f1c9803 commit 19f8a8d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

kernel/x86_64/dscal.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,5 @@ int CNAME(BLASLONG n, BLASLONG dummy0, BLASLONG dummy1, FLOAT da, FLOAT *x, BLAS
242242
}
243243
}
244244
}
245+
return(0);
245246
}

kernel/x86_64/sscal.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,5 @@ int CNAME(BLASLONG n, BLASLONG dummy0, BLASLONG dummy1, FLOAT da, FLOAT *x, BLAS
200200
}
201201
}
202202
}
203+
return(0);
203204
}

0 commit comments

Comments
 (0)