From 78eb6132dd042ed36e59ab57b04fa6f8a228f90a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 26 Apr 2017 10:53:40 -0500 Subject: dhrystone/dhry_1.c: Move assignment to before start of timer --- testsuites/benchmarks/dhrystone/dhry_1.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/testsuites/benchmarks/dhrystone/dhry_1.c b/testsuites/benchmarks/dhrystone/dhry_1.c index 9b64d3a532..3ad2e7f204 100644 --- a/testsuites/benchmarks/dhrystone/dhry_1.c +++ b/testsuites/benchmarks/dhrystone/dhry_1.c @@ -131,6 +131,11 @@ int main (int argc, char **argv) execution_start: printf ("Execution starts, %d runs through Dhrystone\n", Number_Of_Runs); +#ifdef __rtems__ + /* avoid used uninitialized warning */ + Int_2_Loc = 0; +#endif + /***************/ /* Start timer */ /***************/ @@ -143,11 +148,6 @@ execution_start: Begin_Time = time ( (long *) 0); #endif -#ifdef __rtems__ - /* avoid used uninitialized warning */ - Int_2_Loc = 0; -#endif - for (Run_Index = 1; Run_Index <= Number_Of_Runs; ++Run_Index) { -- cgit v1.2.3