10b57cec5SDimitry Andric //===-- lib/multf3.c - Quad-precision multiplication --------------*- C -*-===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // This file implements quad-precision soft-float multiplication
100b57cec5SDimitry Andric // with the IEEE-754 default rounding (to nearest, ties to even).
110b57cec5SDimitry Andric //
120b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
130b57cec5SDimitry Andric 
140b57cec5SDimitry Andric #define QUAD_PRECISION
150b57cec5SDimitry Andric #include "fp_lib.h"
160b57cec5SDimitry Andric 
1706c3fb27SDimitry Andric #if defined(CRT_HAS_TF_MODE)
180b57cec5SDimitry Andric #include "fp_mul_impl.inc"
190b57cec5SDimitry Andric 
__multf3(fp_t a,fp_t b)200b57cec5SDimitry Andric COMPILER_RT_ABI fp_t __multf3(fp_t a, fp_t b) { return __mulXf3__(a, b); }
210b57cec5SDimitry Andric 
220b57cec5SDimitry Andric #endif
23