1 1.1 joerg //===-- lib/addtf3.c - Quad-precision addition --------------------*- C -*-===// 2 1.1 joerg // 3 1.1 joerg // The LLVM Compiler Infrastructure 4 1.1 joerg // 5 1.1 joerg // This file is dual licensed under the MIT and the University of Illinois Open 6 1.1 joerg // Source Licenses. See LICENSE.TXT for details. 7 1.1 joerg // 8 1.1 joerg //===----------------------------------------------------------------------===// 9 1.1 joerg // 10 1.1 joerg // This file implements quad-precision soft-float addition with the IEEE-754 11 1.1 joerg // default rounding (to nearest, ties to even). 12 1.1 joerg // 13 1.1 joerg //===----------------------------------------------------------------------===// 14 1.1 joerg 15 1.1 joerg #define QUAD_PRECISION 16 1.1 joerg #include "fp_lib.h" 17 1.1 joerg 18 1.1 joerg #if defined(CRT_HAS_128BIT) && defined(CRT_LDBL_128BIT) 19 1.1 joerg #include "fp_add_impl.inc" 20 1.1 joerg 21 1.1 joerg COMPILER_RT_ABI long double __addtf3(long double a, long double b){ 22 1.1 joerg return __addXf3__(a, b); 23 1.1 joerg } 24 1.1 joerg 25 1.1 joerg #endif 26