summaryrefslogtreecommitdiff
path: root/lib/eqsf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/eqsf2.c')
-rw-r--r--lib/eqsf2.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/eqsf2.c b/lib/eqsf2.c
new file mode 100644
index 000000000..8d1cf97f6
--- /dev/null
+++ b/lib/eqsf2.c
@@ -0,0 +1,16 @@
+//===-- lib/comparesf2.c - Single-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 SINGLE_PRECISION
+#include "fp_lib.h"
+
+enum LE_RESULT __lesf2(fp_t a, fp_t b);
+enum LE_RESULT __eqsf2(fp_t a, fp_t b) {
+ return __lesf2(a, b);
+}