Ref #385: added missing return instruction

This commit is contained in:
wernsaar 2014-06-12 15:52:14 +02:00
parent a86d349a51
commit ff9cfca24c
2 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,7 @@ int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLO
a_ptr += lda;
ix += inc_x;
}
return(0);
}

View File

@ -61,6 +61,7 @@ int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLO
iy += inc_y;
a_ptr += lda;
}
return(0);
}