]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/builtins/arm/aeabi_drsub.c
Adjust ENA driver to the new ena-com
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / builtins / arm / aeabi_drsub.c
1 //===-- lib/arm/aeabi_drsub.c - Double-precision subtraction --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #define DOUBLE_PRECISION
11 #include "../fp_lib.h"
12
13 AEABI_RTABI fp_t
14 __aeabi_dsub(fp_t, fp_t);
15
16 AEABI_RTABI fp_t
17 __aeabi_drsub(fp_t a, fp_t b) {
18     return __aeabi_dsub(b, a);
19 }