blob: 4ca544edea2ace7b958e86013cab0af04d1297a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===-- lib/eqdf2.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 __eqdf2(fp_t a, fp_t b) {
return __ledf2(a, b);
}
|