Merge pull request #5409 from martin-frbg/issue5372

Work around gcc15.1 on POWER misoptimizing DGEMV at -O3
This commit is contained in:
Martin Kroeker
2025-07-30 10:36:39 -07:00
committed by GitHub

View File

@@ -147,7 +147,7 @@ int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLO
BLASLONG m3;
BLASLONG n2;
BLASLONG lda4 = lda << 2;
FLOAT xbuffer[8] __attribute__ ((aligned (16)));
volatile FLOAT xbuffer[8] __attribute__ ((aligned (16)));
FLOAT *ybuffer;
if ( m < 1 ) return(0);