diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-03-25 18:45:39 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-03-25 18:45:39 +0000 |
commit | 4c70f3e6ac6ead54ffd2a511c6634ea46f61b3df (patch) | |
tree | 9e451f03df16f7eab20ce73a63ec84a023b4b0d6 /compiler-rt/lib/fp_lib.h | |
parent | 4fd21946383cf5bf602ff43dc1a14b0171a1f2a7 (diff) | |
download | bcm5719-llvm-4c70f3e6ac6ead54ffd2a511c6634ea46f61b3df.tar.gz bcm5719-llvm-4c70f3e6ac6ead54ffd2a511c6634ea46f61b3df.zip |
Revert "Split single & double comparison routines into separate implementation
files," for now, I missed some necesary updates.
llvm-svn: 128296
Diffstat (limited to 'compiler-rt/lib/fp_lib.h')
-rw-r--r-- | compiler-rt/lib/fp_lib.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/compiler-rt/lib/fp_lib.h b/compiler-rt/lib/fp_lib.h index 2333c8aec60..6c9455ace0e 100644 --- a/compiler-rt/lib/fp_lib.h +++ b/compiler-rt/lib/fp_lib.h @@ -25,20 +25,6 @@ #include <stdbool.h> #include <limits.h> -// Result enumerations used in comparison routines. -enum LE_RESULT { - LE_LESS = -1, - LE_EQUAL = 0, - LE_GREATER = 1, - LE_UNORDERED = 1 -}; -enum GE_RESULT { - GE_LESS = -1, - GE_EQUAL = 0, - GE_GREATER = 1, - GE_UNORDERED = -1 // Note: different from LE_UNORDERED -}; - #if defined SINGLE_PRECISION typedef uint32_t rep_t; |