diff options
author | Andrew Waterman <waterman@cs.berkeley.edu> | 2016-03-01 16:24:05 -0800 |
---|---|---|
committer | Andrew Waterman <waterman@cs.berkeley.edu> | 2016-03-01 16:24:44 -0800 |
commit | a95b44df9d142a49f3e1bfe4a60d259ed41ca247 (patch) | |
tree | 49f59c903609e5b0de05d5b0c7f7bd23de8c4f13 /softfloat/s_eq128.c | |
parent | bea283531abfd013811e83c75ff6189a0d9b3075 (diff) | |
download | spike-a95b44df9d142a49f3e1bfe4a60d259ed41ca247.zip spike-a95b44df9d142a49f3e1bfe4a60d259ed41ca247.tar.gz spike-a95b44df9d142a49f3e1bfe4a60d259ed41ca247.tar.bz2 |
Upgrade to latest SoftFloat
Diffstat (limited to 'softfloat/s_eq128.c')
-rwxr-xr-x | softfloat/s_eq128.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/softfloat/s_eq128.c b/softfloat/s_eq128.c deleted file mode 100755 index 7261dc4..0000000 --- a/softfloat/s_eq128.c +++ /dev/null @@ -1,13 +0,0 @@ - -#include <stdbool.h> -#include <stdint.h> -#include "platform.h" -#include "primitives.h" - -bool softfloat_eq128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 ) -{ - - return ( a64 == b64 ) && ( a0 == b0 ); - -} - |