Home | History | Annotate | Download | only in arm
      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 COMPILER_RT_ABI fp_t
     14 __aeabi_dsub(fp_t, fp_t);
     15 
     16 COMPILER_RT_ABI fp_t
     17 __aeabi_drsub(fp_t a, fp_t b) {
     18     return __aeabi_dsub(b, a);
     19 }
     20