1*3cab2bb3Spatrick //===-- lib/arm/aeabi_drsub.c - Double-precision subtraction --------------===// 2*3cab2bb3Spatrick // 3*3cab2bb3Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*3cab2bb3Spatrick // See https://llvm.org/LICENSE.txt for license information. 5*3cab2bb3Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*3cab2bb3Spatrick // 7*3cab2bb3Spatrick //===----------------------------------------------------------------------===// 8*3cab2bb3Spatrick 9*3cab2bb3Spatrick #define DOUBLE_PRECISION 10*3cab2bb3Spatrick #include "../fp_lib.h" 11*3cab2bb3Spatrick 12*3cab2bb3Spatrick AEABI_RTABI fp_t __aeabi_dsub(fp_t, fp_t); 13*3cab2bb3Spatrick __aeabi_drsub(fp_t a,fp_t b)14*3cab2bb3SpatrickAEABI_RTABI fp_t __aeabi_drsub(fp_t a, fp_t b) { return __aeabi_dsub(b, a); } 15