Work around compiler warnings for unused variables in the generic zgemm3m_Xcopy kernels
This commit is contained in:
@@ -69,6 +69,27 @@ int CNAME(BLASLONG m, BLASLONG n, FLOAT *a, BLASLONG lda,
|
||||
FLOAT a1, a2, a3, a4, a5, a6, a7, a8;
|
||||
FLOAT a9, a10, a11, a12, a13, a14, a15, a16;
|
||||
|
||||
/* silence compiler warnings about unused-but-set variables:
|
||||
depending on compile-time arguments either the odd or the
|
||||
even-numbered variables will not be used */
|
||||
|
||||
(void)a1;
|
||||
(void)a2;
|
||||
(void)a3;
|
||||
(void)a4;
|
||||
(void)a5;
|
||||
(void)a6;
|
||||
(void)a7;
|
||||
(void)a8;
|
||||
(void)a9;
|
||||
(void)a10;
|
||||
(void)a11;
|
||||
(void)a12;
|
||||
(void)a13;
|
||||
(void)a14;
|
||||
(void)a15;
|
||||
(void)a16;
|
||||
|
||||
#if 0
|
||||
#ifdef REAL_ONLY
|
||||
fprintf(stderr, "NON Real ");
|
||||
|
||||
Reference in New Issue
Block a user