Skip to content

Commit e9d30b7

Browse files
authored
style: reorder variable declarations
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 4fbcb82 commit e9d30b7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/cfill/benchmark/c/benchmark.length.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ static float rand_float( void ) {
9797
*/
9898
static double benchmark1( int iterations, int len ) {
9999
stdlib_complex64_t alpha;
100-
float *x;
101100
double elapsed;
102101
double t;
102+
float *x;
103103
int i;
104104

105105
x = (float *) malloc( len * 2 * sizeof( float ) );
@@ -135,9 +135,9 @@ static double benchmark1( int iterations, int len ) {
135135
*/
136136
static double benchmark2( int iterations, int len ) {
137137
stdlib_complex64_t alpha;
138-
float *x;
139138
double elapsed;
140139
double t;
140+
float *x;
141141
int i;
142142

143143
x = (float *) malloc( len * 2 * sizeof( float ) );

0 commit comments

Comments
 (0)