summaryrefslogtreecommitdiff
path: root/lib/nedf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/nedf2.c')
-rw-r--r--lib/nedf2.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/nedf2.c b/lib/nedf2.c
new file mode 100644
index 000000000..db0694602
--- /dev/null
+++ b/lib/nedf2.c
@@ -0,0 +1,17 @@
+//===-- lib/nedf2.c - Double-precision comparisons ----------------*- C -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#define DOUBLE_PRECISION
+#include "fp_lib.h"
+
+enum LE_RESULT __ledf2(fp_t a, fp_t b);
+enum LE_RESULT __nedf2(fp_t a, fp_t b) {
+ return __ledf2(a, b);
+}
+