aboutsummaryrefslogtreecommitdiffstats
path: root/dhrystone/dhry.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-07-02 10:50:54 +0200
committerClifford Wolf <clifford@clifford.at>2015-07-02 10:50:54 +0200
commitb6e8c15901fe13b3a1521a1ab3503534d3c9c0ee (patch)
tree8c3377a129465d5bd1f8cbccfd62169787a21a50 /dhrystone/dhry.h
parentc48a3b2434e239aa45462a41f2e216fa65b00932 (diff)
downloadpicorv32-b6e8c15901fe13b3a1521a1ab3503534d3c9c0ee.tar.gz
picorv32-b6e8c15901fe13b3a1521a1ab3503534d3c9c0ee.zip
Removed trailing whitespaces in dhrystone code
Diffstat (limited to 'dhrystone/dhry.h')
-rw-r--r--dhrystone/dhry.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/dhrystone/dhry.h b/dhrystone/dhry.h
index 1714562..bafacc6 100644
--- a/dhrystone/dhry.h
+++ b/dhrystone/dhry.h
@@ -3,9 +3,9 @@
*
* "DHRYSTONE" Benchmark Program
* -----------------------------
- *
+ *
* Version: C, Version 2.1
- *
+ *
* File: dhry.h (part 1 of 3)
*
* Date: May 25, 1988
@@ -33,12 +33,12 @@
*
* Collection of Results:
* Reinhold Weicker (address see above) and
- *
+ *
* Rick Richardson
* PC Research. Inc.
* 94 Apple Orchard Drive
* Tinton Falls, NJ 07724
- * Phone: (201) 389-8963 (9-17 EST)
+ * Phone: (201) 389-8963 (9-17 EST)
* Usenet: ...!uunet!pcrat!rick
*
* Please send results to Rick Richardson and/or Reinhold Weicker.
@@ -91,7 +91,7 @@
* version previously distributed by Reinhold Weicker.
*
* At several places in the benchmark, code has been added,
- * but within the measurement loop only in branches that
+ * but within the measurement loop only in branches that
* are not executed. The intention is that optimizing compilers
* should be prevented from moving code out of the measurement
* loop, or from removing code altogether. Since the statements
@@ -101,7 +101,7 @@
* still hold. Except for sophisticated optimizing compilers,
* execution times for this version should be the same as
* for previous versions.
- *
+ *
* Since it has proven difficult to subtract the time for the
* measurement loop overhead in a correct way, the loop check
* has been made a part of the benchmark. This does have
@@ -151,7 +151,7 @@
* -DTIME
* The "times" function of UNIX (returning process times)
* or the "time" function (returning wallclock time)
- * is used for measurement.
+ * is used for measurement.
* For single user machines, "time ()" is adequate. For
* multi-user machines where you cannot get single-user
* access, use the "times ()" function. If you have
@@ -198,23 +198,23 @@
* different from the Ada version.]
*
* The following program contains statements of a high level programming
- * language (here: C) in a distribution considered representative:
+ * language (here: C) in a distribution considered representative:
*
* assignments 52 (51.0 %)
* control statements 33 (32.4 %)
* procedure, function calls 17 (16.7 %)
*
* 103 statements are dynamically executed. The program is balanced with
- * respect to the three aspects:
+ * respect to the three aspects:
*
* - statement type
* - operand type
* - operand locality
- * operand global, local, parameter, or constant.
+ * operand global, local, parameter, or constant.
*
- * The combination of these three aspects is balanced only approximately.
+ * The combination of these three aspects is balanced only approximately.
*
- * 1. Statement Type:
+ * 1. Statement Type:
* ----------------- number
*
* V1 = V2 9
@@ -258,9 +258,9 @@
* library procedure 1
* X = F (...)
* function call 6
- * user function 5
- * library function 1
- * --
+ * user function 5
+ * library function 1
+ * --
* 17 17
* ---
* 103
@@ -274,10 +274,10 @@
* number approximate
* percentage
*
- * Arithmetic 32 50.8
+ * Arithmetic 32 50.8
*
- * + 21 33.3
- * - 7 11.1
+ * + 21 33.3
+ * - 7 11.1
* * 3 4.8
* / (int div) 1 1.6
*
@@ -295,7 +295,7 @@
* && (AND-THEN) 1 1.6
* | (OR) 1 1.6
* ! (NOT) 2 3.2
- *
+ *
* -- -----
* 63 100.1
*
@@ -315,10 +315,10 @@
* 242 100.0 %
*
* When there is an access path leading to the final operand (e.g. a record
- * component), only the final data type on the access path is counted.
+ * component), only the final data type on the access path is counted.
*
*
- * 4. Operand Locality:
+ * 4. Operand Locality:
* -------------------
* number approximate
* percentage
@@ -386,7 +386,7 @@
#include <stdio.h>
/* for strcpy, strcmp */
-#define Null 0
+#define Null 0
/* Value of a Null pointer */
#define true 1
#define false 0
@@ -399,7 +399,7 @@ typedef char Str_30 [31];
typedef int Arr_1_Dim [50];
typedef int Arr_2_Dim [50] [50];
-typedef struct record
+typedef struct record
{
struct record *Ptr_Comp;
Enumeration Discr;