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
commit 0968dddf1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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);