Skip to content

Commit

Permalink
Merge pull request OpenMathLib#4839 from martin-frbg/fix4794
Browse files Browse the repository at this point in the history
Add proper returns in x86_64 s/dscal kernels
  • Loading branch information
martin-frbg committed Aug 4, 2024
2 parents cf483d9 + f1c9803 commit 19f8a8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions kernel/x86_64/dscal.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,4 +242,5 @@ int CNAME(BLASLONG n, BLASLONG dummy0, BLASLONG dummy1, FLOAT da, FLOAT *x, BLAS
}
}
}
return(0);
}
1 change: 1 addition & 0 deletions kernel/x86_64/sscal.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,5 @@ int CNAME(BLASLONG n, BLASLONG dummy0, BLASLONG dummy1, FLOAT da, FLOAT *x, BLAS
}
}
}
return(0);
}

0 comments on commit 19f8a8d

Please sign in to comment.