diff options
Diffstat (limited to 'compiler-rt/lib/gtsf2.c')
-rw-r--r-- | compiler-rt/lib/gtsf2.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/compiler-rt/lib/gtsf2.c b/compiler-rt/lib/gtsf2.c deleted file mode 100644 index 3c32d7f414c..00000000000 --- a/compiler-rt/lib/gtsf2.c +++ /dev/null @@ -1,16 +0,0 @@ -//===-- lib/gtsf2.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 GE_RESULT __gesf2(fp_t a, fp_t b); -enum GE_RESULT __gtsf2(fp_t a, fp_t b) { - return __gesf2(a, b); -} |