summaryrefslogtreecommitdiff
path: root/nmglobal.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-15 02:19:34 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-15 02:19:34 +0000
commit332747f6df0cd2af6535d81ccde00ade374563fa (patch)
tree67ec63e56bdd6220146e0d42d676fcb165999f09 /nmglobal.h
parent27b6cc8fd26d7d3f31308a4137436e4f455c0daf (diff)
Clean out fpemulation struct. Replace members with local static variables
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@48 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'nmglobal.h')
-rw-r--r--nmglobal.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/nmglobal.h b/nmglobal.h
index 90fcf63..5e8f70a 100644
--- a/nmglobal.h
+++ b/nmglobal.h
@@ -43,36 +43,11 @@ typedef struct {
double results; /* # of bitfield ops per sec */
} BitOpStruct;
-/****************************
-** EMULATED FLOATING POINT **
-****************************/
-/*
-** DEFINES
-*/
-#define INTERNAL_FPF_PRECISION 4
-
-/*
-** The following constant is the maximum number of loops
-** of the emulated floating point test that the system
-** will allow before flagging an error. This is not a
-** critical constant, and can be altered if your system is
-** a real barn-burner.
-*/
-/*#define CPUEMFLOATLOOPMAX 50000L*/
-#define CPUEMFLOATLOOPMAX 500000L
-
-/*
-** Set size of array
-*/
-#define EMFARRAYSIZE 3000L
-
/*
** TYPEDEFS
*/
typedef struct {
double results; /* Results */
- unsigned long arraysize; /* Size of array */
- unsigned long loops; /* Loops per iterations */
} EmFloatStruct;
/*************************