summaryrefslogtreecommitdiff
path: root/lib/fp_lib.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-03-25 18:45:39 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-03-25 18:45:39 +0000
commitce750fdaab5c9c1d013817ad949c9109eb3f2af2 (patch)
tree05c8c6e8ce51d97a2cca43cf8e55aa392c8db2cb /lib/fp_lib.h
parentfb92f4bd1dec8ddd6132d9a365fd7be3b8086824 (diff)
downloadcompiler-rt-ce750fdaab5c9c1d013817ad949c9109eb3f2af2.tar.gz
compiler-rt-ce750fdaab5c9c1d013817ad949c9109eb3f2af2.tar.bz2
compiler-rt-ce750fdaab5c9c1d013817ad949c9109eb3f2af2.tar.xz
Revert "Split single & double comparison routines into separate implementation
files," for now, I missed some necesary updates. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@128296 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/fp_lib.h')
-rw-r--r--lib/fp_lib.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/fp_lib.h b/lib/fp_lib.h
index 2333c8ae..6c9455ac 100644
--- a/lib/fp_lib.h
+++ b/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;