@@ -148,8 +148,8 @@ OPENBLAS_COMPLEX_FLOAT NAME( blasint *N, FLOAT *x, blasin
148
148
#else
149
149
150
150
#ifdef FORCE_USE_STACK
151
- void CNAME (blasint n , void * vx , blasint incx , void * vy , blasint incy , void * vresult ){
152
- OPENBLAS_COMPLEX_FLOAT * result ;
151
+ void CNAME (blasint n , void * vx , blasint incx , void * vy , blasint incy , void * vresult ){
152
+ OPENBLAS_COMPLEX_FLOAT * result = ( OPENBLAS_COMPLEX_FLOAT * ) vresult ;
153
153
#else
154
154
OPENBLAS_COMPLEX_FLOAT CNAME (blasint n , void * vx , blasint incx , void * vy , blasint incy ){
155
155
@@ -165,7 +165,6 @@ OPENBLAS_COMPLEX_FLOAT CNAME(blasint n, void *vx, blasint incx, void *vy, blasin
165
165
#ifdef FORCE_USE_STACK
166
166
OPENBLAS_COMPLEX_FLOAT zero = OPENBLAS_MAKE_COMPLEX_FLOAT (0.0 , 0.0 );
167
167
* result = zero ;
168
- vresult = (void * )result ;
169
168
// CREAL(*result) = 0.0;
170
169
// CIMAG(*result) = 0.0;
171
170
return ;
@@ -185,10 +184,8 @@ OPENBLAS_COMPLEX_FLOAT CNAME(blasint n, void *vx, blasint incx, void *vy, blasin
185
184
186
185
#ifndef CONJ
187
186
* result = DOTU_K (n , x , incx , y , incy );
188
- vresult = (void * )result ;
189
187
#else
190
188
* result = DOTC_K (n , x , incx , y , incy );
191
- vresult = (void * )result ;
192
189
#endif
193
190
194
191
FUNCTION_PROFILE_END (4 , 2 * n , 2 * n );
0 commit comments