factoring riscv64/dot.c fix into separate PR as requested

This commit is contained in:
Sergei Lewis 2023-03-01 17:40:42 +00:00
parent 2406958629
commit 9b61be4545
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y)
BLASLONG ix=0,iy=0; BLASLONG ix=0,iy=0;
double dot = 0.0 ; double dot = 0.0 ;
if ( n < 1 ) return(dot); if ( n < 0 ) return(dot);
while(i < n) while(i < n)
{ {