freebsd-dev/contrib/compiler-rt/lib/builtins/adddf3.c

23 lines
740 B
C
Raw Normal View History

//===-- lib/adddf3.c - Double-precision addition ------------------*- C -*-===//
2010-10-21 19:02:02 +00:00
//
// 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.
2010-10-21 19:02:02 +00:00
//
//===----------------------------------------------------------------------===//
//
// This file implements double-precision soft-float addition with the IEEE-754
// default rounding (to nearest, ties to even).
2010-10-21 19:02:02 +00:00
//
//===----------------------------------------------------------------------===//
#define DOUBLE_PRECISION
#include "fp_add_impl.inc"
2010-10-21 19:02:02 +00:00
ARM_EABI_FNALIAS(dadd, adddf3)
2011-06-02 20:02:42 +00:00
COMPILER_RT_ABI double __adddf3(double a, double b){
return __addXf3__(a, b);
2010-10-21 19:02:02 +00:00
}