blob: 4cdff38e3e793cb1b6de28bd7927d32b92ce1dd8 [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 __floatunsidf, uint32_t -> double
/// conversion (round to nearest), on top of LLVM-libc's shared::floatunsidf.
///
//===----------------------------------------------------------------------===//
#define DOUBLE_PRECISION
#include "fp_lib.h"
#include "fp_libc_config.h"
#include "int_lib.h"
#include "shared/builtins/floatunsidf.h"
extern "C" COMPILER_RT_ABI fp_t __floatunsidf(su_int a) {
return LIBC_NAMESPACE::shared::floatunsidf(a);
}