Merge pull request #2937 from martin-frbg/pwr-buffersz

Increase and unify BUFFERSIZE on POWER;fix gcc inline warning
This commit is contained in:
Martin Kroeker
2020-10-23 07:15:32 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -513,7 +513,7 @@ static void zgemv_kernel_4x1(BLASLONG n, FLOAT *ap, FLOAT *x, FLOAT *y, FLOAT al
#endif
static __attribute__((always_inline)) void copy_x(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_src) {
static __attribute__((always_inline)) inline void copy_x(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_src) {
BLASLONG i;
for (i = 0; i < n; i++) {
*dest = *src;