Merge pull request #2977 from martin-frbg/issue2976

Fix macro name used in ifdef for POWERPC/PGI
This commit is contained in:
Martin Kroeker 2020-11-07 14:41:34 +01:00 committed by GitHub
commit ff74319ea5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ OPENBLAS_COMPLEX_FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLA
i++ ;
}
#if !defined(__POWER__)
#if !defined(__PPC__)
CREAL(result) = dot[0];
CIMAG(result) = dot[1];
#else