diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-11-29 19:04:59 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-11-29 19:04:59 +0000 |
commit | 32dc0c0deb13ce57f099f616ddc427296970d8a5 (patch) | |
tree | cb093cad58967d3d541c8ce5d087209ef3183085 /src/iemlib1 | |
parent | fce7770da0fe36b898328662f7d3c8a5a0df2a08 (diff) |
activate IEM_DENORMAL for __x86_64__ architectures too
svn path=/trunk/externals/iemlib/; revision=6514
Diffstat (limited to 'src/iemlib1')
-rw-r--r-- | src/iemlib1/iemlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iemlib1/iemlib.h b/src/iemlib1/iemlib.h index 6be2de0..5c4f245 100644 --- a/src/iemlib1/iemlib.h +++ b/src/iemlib1/iemlib.h @@ -95,7 +95,7 @@ union tabfudge int32 tf_i[2]; }; -#ifdef __i386__ +#if defined __i386__ || defined __x86_64__ #define IEM_DENORMAL(f) ((((*(unsigned int*)&(f))&0x60000000)==0) || \ (((*(unsigned int*)&(f))&0x60000000)==0x60000000)) /* more stringent test: anything not between 1e-19 and 1e19 in absolute val */ |