blob: dbc4a483bc44c720379344e995c545bf3bccec95 [file] [edit]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file implements compiler-rt's __mulsf3, single-precision
/// multiplication, on top of LLVM-libc's shared::mulsf3.
///
//===----------------------------------------------------------------------===//
#define SINGLE_PRECISION
#include "fp_lib.h"
#include "fp_libc_config.h"
#include "int_lib.h"
#include "shared/builtins/mulsf3.h"
extern "C" COMPILER_RT_ABI fp_t __mulsf3(fp_t a, fp_t b) {
return LIBC_NAMESPACE::shared::mulsf3(a, b);
}