Home | History | Annotate | Download | only in arm
      1 //===-- lib/arm/aeabi_frsub.c - Single-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 SINGLE_PRECISION
     11 #include "../fp_lib.h"
     12 
     13 COMPILER_RT_ABI fp_t
     14 __aeabi_fsub(fp_t, fp_t);
     15 
     16 COMPILER_RT_ABI fp_t
     17 __aeabi_frsub(fp_t a, fp_t b) {
     18     return __aeabi_fsub(b, a);
     19 }
     20